progs: remove rbug subdir
[mesa.git] / progs / rbug / Makefile
diff --git a/progs/rbug/Makefile b/progs/rbug/Makefile
deleted file mode 100644 (file)
index 2b95e59..0000000
+++ /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 $@