summaryrefslogtreecommitdiffstats
path: root/src/gallium/tests/trivial/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/tests/trivial/Makefile')
-rw-r--r--src/gallium/tests/trivial/Makefile54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/gallium/tests/trivial/Makefile b/src/gallium/tests/trivial/Makefile
deleted file mode 100644
index 8c032016538..00000000000
--- a/src/gallium/tests/trivial/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-# src/gallium/tests/trivial/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 += \
- $(GALLIUM_PIPE_LOADER_LIBS) \
- $(GALLIUM_AUXILIARIES) \
- $(PROG_LINKS) $(LIBUDEV_LIBS)
-
-SOURCES = \
- tri.c \
- quad-tex.c \
- compute.c
-
-OBJECTS = $(SOURCES:.c=.o)
-
-PROGS = $(OBJECTS:.o=)
-
-PROG_DEFINES = -DPIPE_SEARCH_DIR=\"$(PIPE_SRC_DIR)\" \
- $(GALLIUM_PIPE_LOADER_DEFINES)
-
-PIPE_SRC_DIR = $(TOP)/src/gallium/targets/pipe-loader
-
-##### TARGETS #####
-
-default: $(PROGS) pipes
-
-install:
-
-clean:
- -rm -f $(PROGS)
- -rm -f *.o
- -rm -f result.bmp
- @$(MAKE) -C $(PIPE_SRC_DIR) clean
-
-pipes:
- @$(MAKE) -C $(PIPE_SRC_DIR)
-
-##### RULES #####
-
-$(OBJECTS): %.o: %.c
- $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $(PROG_DEFINES) $< -o $@
-
-$(PROGS): %: %.o $(LINKS)
- $(CXX) $(LDFLAGS) $< $(LINKS) $(LLVM_LIBS) -lm -lpthread -ldl -o $@