summaryrefslogtreecommitdiff
path: root/Makefile
blob: b9ee99bed63e173ac13c9aa28043a590cdb8a1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
OBJECTS = radeon.o mode.o test.o r700_atom.o r600_winsys.o r600_atom.o\
	r600_scheduler.o r600_clear.o
CFLAGS = -g3 -O0 -std=gnu99 -I/usr/include/drm
LDFLAGS = -ldrm -ldrm_radeon
DEPS = radeon.h

radeonkmstest: $(OBJECTS)
	gcc -o radeonkmstest $(OBJECTS) $(LDFLAGS)

.c.o: $(DEPS)
	gcc $(CFLAGS) -c $<

clean:
	rm -f *.o