diff options
Diffstat (limited to 'progs/rbug/Makefile')
-rw-r--r-- | progs/rbug/Makefile | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/progs/rbug/Makefile b/progs/rbug/Makefile deleted file mode 100644 index 2b95e59aca..0000000000 --- a/progs/rbug/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# progs/rbug/Makefile - -TOP = ../.. -include $(TOP)/configs/current - -INCLUDES = \ - -I. \ - -I$(TOP)/src/gallium/include \ - -I$(TOP)/src/gallium/auxiliary \ - -I$(TOP)/src/gallium/drivers \ - $(PROG_INCLUDES) - -LINKS = \ - $(GALLIUM_AUXILIARIES) \ - $(PROG_LINKS) - -SOURCES = \ - bin_to_bmp.c \ - simple_client.c \ - simple_server.c \ - shdr_info.c \ - shdr_dump.c \ - shdr_disable.c \ - ctx_info.c \ - ctx_rule.c \ - tex_info.c \ - tex_dump.c - - -OBJECTS = $(SOURCES:.c=.o) - -PROGS = $(OBJECTS:.o=) - -##### TARGETS ##### - -default: $(OBJECTS) $(PROGS) - -clean: - -rm -f $(PROGS) - -rm -f *.o - -##### RULES ##### - -$(OBJECTS): %.o: %.c - $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $(PROG_DEFINES) $< -o $@ - -$(PROGS): %: %.o - $(CC) $(LDFLAGS) $< $(LINKS) -lm -o $@ |