cde1bddce7
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
14 lines
358 B
Text
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
|