Revision: 923 http://trac.macosforge.org/projects/darwinbuild/changeset/923 Author: wsiegrist@apple.com Date: 2011-02-08 10:17:59 -0800 (Tue, 08 Feb 2011) Log Message: ----------- Remove old Makefiles Removed Paths: ------------- branches/PR-8817822/Makefile branches/PR-8817822/darwintrace/Makefile Deleted: branches/PR-8817822/Makefile =================================================================== --- branches/PR-8817822/Makefile 2011-02-08 17:31:49 UTC (rev 922) +++ branches/PR-8817822/Makefile 2011-02-08 18:17:59 UTC (rev 923) @@ -1,26 +0,0 @@ -Project = darwinbuild -SubProjects = darwinbuild \ - darwintrace \ - darwinup \ - darwinxref - -Install_Flags = DESTDIR=$(DSTROOT) - -SUBDIRS= \ - darwinbuild \ - darwinxref \ - darwinup \ - darwintrace - -.PHONY: all clean install uninstall - -all clean install uninstall: - @$(foreach DIR,$(SUBDIRS), \ - (echo "*** Making $@ in $(DIR) ***" ; \ - make -C $(DIR) $@) || exit 1; ) - -installsrc: - tar czf - . | tar xzf - -C "$(SRCROOT)" --exclude=.svn --exclude=sqlite --exclude=www --exclude=darwinup/libredo.o --exclude=patches --exclude=plists --exclude=testing - -installhdrs: - @echo Nothing to be done for $@ Deleted: branches/PR-8817822/darwintrace/Makefile =================================================================== --- branches/PR-8817822/darwintrace/Makefile 2011-02-08 17:31:49 UTC (rev 922) +++ branches/PR-8817822/darwintrace/Makefile 2011-02-08 18:17:59 UTC (rev 923) @@ -1,39 +0,0 @@ -include ../common.mk - -LIBS=$(shell if [ -e /usr/lib/libSystemStubs.a ]; then echo -lSystemStubs; fi) - -### -### Variables for the 'install' phase -### -DATDIR:=$(DATDIR)/darwinbuild - -all: darwintrace.dylib - -VERSION=$(shell uname -r | cut -f1 -d. ) -ifeq ($(VERSION), 8) -CFLAGS += -nostdlib -else -CFLAGS += -nodefaultlibs -endif - -darwintrace.dylib: darwintrace.c - cc -o $(OBJROOT)/$@ \ - $(CFLAGS) \ - -Wall -Werror -pedantic -std=c99 \ - -flat_namespace \ - -fno-common \ - $(CFLAGS) \ - -undefined suppress \ - -dynamiclib \ - $^ $(LIBS) -clean: - rm -f darwintrace.dylib - -install: all - [ -d $(DATDIR) ] || \ - $(INSTALL) -d $(INSTALL_DIR_FLAGS) $(DATDIR) - $(INSTALL) $(INSTALL_DOC_FLAGS) $(OBJROOT)/darwintrace.dylib $(DATDIR) - -uninstall: - rm -f $(DATDIR)/darwintrace.dylib - -rmdir $(DATDIR)
participants (1)
-
source_changes@macosforge.org