pkgsrc/sysutils/atitvout/files/Makefile.bsd
mrg cde1bddce7 initial import of the "atitvout" package that provides tv-out capabilities
for many recent ATI video cards.  tested to be able to switch from the lcd
to the s-video tv-out with a radeon mobility 9000 (M9), and also known to
work on:
	ATI Technologies Inc Rage Mobility P/M AGP 2x
	ATI Technologies Inc 3D Rage LT Pro AGP-133
	ATI Rage Mobility M3
but to fail on:
	ATI Technologies Inc Rage Mobility M4 AGP
2003-08-13 05:22:59 +00:00

14 lines
358 B
Text

# $NetBSD: Makefile.bsd,v 1.1.1.1 2003/08/13 05:23:00 mrg Exp $
VERSION=0.4
CFLAGS=-Wall -O2 -g -DVERSION=\"$(VERSION)\" -I$(PREFIX)/include
OBJS=atitvout.o ati.o vbeinfo.o vbecall.o mach64.o radeon.o
BINARY=atitvout
LIBS=-llrmi -li386
all: $(BINARY)
$(BINARY): $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) -o $(BINARY) $(LIBS)
.PHONY: test install clean strip all