diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-04-13 07:05:13 +0900 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-04-13 07:05:46 +0900 |
commit | 6917ef10f20d2c6de92e5432b9483d9648d8b0c0 (patch) | |
tree | 86c95f54d7ce0dcc02a3a55ab617b723b6fc76b2 /progs/gallium/trivial/Makefile | |
parent | 6cd82eb399c8a6c248c2d9b135bafefbac8fbe0f (diff) |
progs/gallium: Move into src/gallium/tests
Two reasons:
- progs will eventually have its own repository
- it is just to easy to forget updating the
code for interface changes when it is outside of src
Diffstat (limited to 'progs/gallium/trivial/Makefile')
-rw-r--r-- | progs/gallium/trivial/Makefile | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/progs/gallium/trivial/Makefile b/progs/gallium/trivial/Makefile deleted file mode 100644 index 2b8af1ac06..0000000000 --- a/progs/gallium/trivial/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# progs/gallium/simple/Makefile - -TOP = ../../.. -include $(TOP)/configs/current - -INCLUDES = \ - -I. \ - -I$(TOP)/src/gallium/include \ - -I$(TOP)/src/gallium/auxiliary \ - -I$(TOP)/src/gallium/drivers \ - -I$(TOP)/src/gallium/winsys \ - $(PROG_INCLUDES) - -LINKS = \ - $(TOP)/src/gallium/drivers/trace/libtrace.a \ - $(TOP)/src/gallium/winsys/sw/null/libws_null.a \ - $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \ - $(GALLIUM_AUXILIARIES) \ - $(PROG_LINKS) - -SOURCES = \ - tri.c \ - quad-tex.c - -OBJECTS = $(SOURCES:.c=.o) - -PROGS = $(OBJECTS:.o=) - -##### TARGETS ##### - -default: $(PROGS) - -clean: - -rm -f $(PROGS) - -rm -f *.o - -rm -f result.bmp - -##### RULES ##### - -$(OBJECTS): %.o: %.c - $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $(PROG_DEFINES) $< -o $@ - -$(PROGS): %: %.o - $(CC) $(LDFLAGS) $< $(LINKS) -lm -lpthread -o $@ |