diff options
author | Luc Verhaegen <libv@skynet.be> | 2010-03-06 23:45:52 +0100 |
---|---|---|
committer | Luc Verhaegen <libv@skynet.be> | 2010-03-06 23:45:52 +0100 |
commit | 9c927f2639598e59bb4cf68a32ee80606f2dd56a (patch) | |
tree | 66f5f4874f86681b0179d4ff1e2ceb5e50728234 /progs/tools/trace/Makefile | |
parent | 35fe0e56e6f6b45ceea0c3d43be7596c1ea44e00 (diff) |
Import ubuntu's 7.2-1ubuntu2 mesa version.debian-7.2-1ubuntu2
Found on intrepid 8/10.
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 822e466ad1..0000000000 --- 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 python gltrace.py -f $(TOP)/src/mesa/glapi/gl_API.xml > gltrace.cc - - -clean: - rm -f $(OBJECTS) - rm -f $(TRACER) - rm -f *~ - rm -f gltrace.cc |