diff options
author | Brian Paul <[email protected]> | 2004-05-12 14:04:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-05-12 14:04:29 +0000 |
commit | 751c9d096d7bca4cc7d2f8a8a4660d160d785134 (patch) | |
tree | 33ed9b6ad98c0765302e3d10a174c46a42b449cd /src/mesa/Makefile.solo | |
parent | 8813cb56b0e5c61cfcf1a33ed887f46d4f5dbf09 (diff) |
obsolete in favor of regular Makefiles
Diffstat (limited to 'src/mesa/Makefile.solo')
-rw-r--r-- | src/mesa/Makefile.solo | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/src/mesa/Makefile.solo b/src/mesa/Makefile.solo deleted file mode 100644 index 349c42f9c51..00000000000 --- a/src/mesa/Makefile.solo +++ /dev/null @@ -1,70 +0,0 @@ -# Makefile for linux-solo (i.e. stand-alone DRI drivers for miniglx environment) -# We just generate a mesa.a file which is all the core Mesa sources. This will -# get linked into the DRI hardware drivers (name *_dri.so). - - -TOP = ../.. - -include sources - -# The objects we want to make: -OBJECTS = \ - $(CORE_OBJECTS) - - -##### RULES ##### - -.c.o: - $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@ - -.S.o: - $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@ - - -x86/matypes.h: main/mtypes.h tnl/t_context.h x86/gen_matypes.c - $(CC) $(INCLUDE_DIRS) $(CFLAGS) x86/gen_matypes.c -o x86/gen_matypes - ./x86/gen_matypes > x86/matypes.h - rm -f x86/gen_matypes x86/*.o - -x86/common_x86_asm.o: x86/matypes.h - - - -##### TARGETS ##### - -default: - @echo "Specify a target configuration" - - -targets: mesa.a - - -# Make archive of core object files for linux-solo DRI drivers -mesa.a: $(OBJECTS) - rm -f $@ - ar rcv $@ $(OBJECTS) - ranlib $@ - - - -# Run 'make -f Makefile.solo dep' to update the dependencies if you change -# what's included by any source file. -dep: $(CORE_SOURCES) $(ASM_SOURCES) - makedepend -fdepend -Y $(INCLUDE_DIRS) $(CORE_SOURCES) $(ASM_SOURCES) - - -# Emacs tags -tags: - etags `find . -name \*.[ch]` `find ../include` - - -# Remove .o and backup files -clean: - -rm -f *.a - -rm -f */*.o */*~ */*.o */*~ - -rm -f drivers/*/*.o drivers/*/*/*.o - - -include $(TOP)/Make-config - -include depend |