summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-04-27 12:21:03 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-04-27 12:21:03 +0000
commit942fdd126cad762e948d5648ba2816521621a05f (patch)
tree37b447e97eea2f12982737cd428757597b1e455b
parentf68f1de398bc56d87cfda44dddaf18e7dd18bdf4 (diff)
Correct rm for clean
-rw-r--r--src/miniglx/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/miniglx/Makefile b/src/miniglx/Makefile
index 585cef8bf4e..144c0cec8bf 100644
--- a/src/miniglx/Makefile
+++ b/src/miniglx/Makefile
@@ -14,7 +14,6 @@ SOURCES = dispatch.c \
OBJS = $(SOURCES:.c=.o)
-
INCLUDES = -I. -I.. -I$(MESA)/include
LIBS = -ldl
@@ -40,6 +39,6 @@ glapi.c: ../glapi.c
clean: clean_here
clean_here:
- rm -f drmtest glapi.c ../lib/libGL.so*
+ rm -f drmtest glapi.c $(MESA)/lib/libGL.so*
-include $(SOURCES:.c=.d)