diff options
author | Brian Paul <[email protected]> | 2010-06-04 17:26:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-06-04 17:47:53 -0600 |
commit | 700717175ce6e217dfe61ecc6a4b8adafab88b75 (patch) | |
tree | 6aef1aae684f6e7a80d6869833e669054d029bd8 /progs/tools/trace/Makefile | |
parent | ca10ab6da88e6cf10396697539eb1116fd91c4a6 (diff) |
progs: remove tools subdir
Diffstat (limited to 'progs/tools/trace/Makefile')
-rw-r--r-- | progs/tools/trace/Makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/progs/tools/trace/Makefile b/progs/tools/trace/Makefile deleted file mode 100644 index 32fea2c4dd8..00000000000 --- a/progs/tools/trace/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# Makefile for Thomas Sondergaard's API tracer - -TOP = ../../.. - -include $(TOP)/configs/current - - -OBJECTS = gltrace.o gltrace_support.o - -TRACER = gltrace.so - -.cc.o: - $(CXX) -c $(INCDIRS) $(CXXFLAGS) $< -o $@ - - -default: $(TRACER) - -$(TRACER): $(OBJECTS) - $(MKLIB) -o $(TRACER) -noprefix -cplusplus -linker '$(CXX)' \ - -ldflags '$(LDFLAGS)' $(MKLIB_OPTIONS) $(OBJECTS) - -gltrace.cc: gltrace.py - PYTHONPATH=$(TOP)/src/mesa/glapi/gen python gltrace.py -f $(TOP)/src/mesa/glapi/gen/gl_API.xml > gltrace.cc - - -clean: - rm -f $(OBJECTS) - rm -f $(TRACER) - rm -f *~ - rm -f gltrace.cc |