X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=progs%2Fperf%2FMakefile;fp=progs%2Fperf%2FMakefile;h=0000000000000000000000000000000000000000;hb=68fc4b415e322f6744299e39864fbc377c6eff74;hp=f7b965542e2987f45214c95ea58df3f31573c947;hpb=e4f4489e3fc0b36d72821b55794fb843b2b7fa5f;p=mesa.git diff --git a/progs/perf/Makefile b/progs/perf/Makefile deleted file mode 100644 index f7b965542e2..00000000000 --- a/progs/perf/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# progs/demos/Makefile - -TOP = ../.. -include $(TOP)/configs/current - -INCDIR = $(TOP)/include - -LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB) \ - -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS) - -# using : to avoid APP_CC pointing to CC loop -CC := $(APP_CC) -CFLAGS := -I$(INCDIR) $(CFLAGS) -LDLIBS = $(LIBS) - -PROG_SOURCES = \ - copytex.c \ - drawoverhead.c \ - fbobind.c \ - fill.c \ - genmipmap.c \ - readpixels.c \ - swapbuffers.c \ - teximage.c \ - vbo.c \ - vertexrate.c \ - -PROG_OBJS = $(PROG_SOURCES:.c=.o) - -PROGS = $(PROG_SOURCES:%.c=%) - - -UTIL_SOURCES = \ - common.c \ - glmain.c - -UTIL_HEADERS = \ - common.h \ - glmain.h - -UTIL_OBJS = $(UTIL_SOURCES:.c=.o) - - - -default: $(PROGS) - -$(PROG_OBJS): $(UTIL_HEADERS) - -$(PROGS): $(UTIL_OBJS) - - - -clean: - -rm -f $(PROGS) - -rm -f *.o *~