From: jljusten Date: Thu, 1 Nov 2007 22:58:47 +0000 (+0000) Subject: Revert changes from r860 for makefiles that are only used X-Git-Url: http://git.etherboot.org/people/mcb30/basetools.git/commitdiff_plain/f5ce222bc42bd96be78643463b617871599cadc1 Revert changes from r860 for makefiles that are only used by the GNU toolchain. git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@866 7335b38e-4728-0410-8992-fb3ffe349368 --- diff --git a/Source/C/Makefiles/app.makefile b/Source/C/Makefiles/app.makefile index fe23b3a..7555556 100644 --- a/Source/C/Makefiles/app.makefile +++ b/Source/C/Makefiles/app.makefile @@ -8,6 +8,6 @@ APPLICATION = $(MAKEROOT)/bin/$(APPNAME) all: $(MAKEROOT)/bin $(APPLICATION) $(APPLICATION): $(OBJECTS) - $(LINKER) -out:$(APPLICATION) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS) + $(LINKER) -o $(APPLICATION) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS) include $(MAKEROOT)/Makefiles/footer.makefile diff --git a/Source/C/Makefiles/footer.makefile b/Source/C/Makefiles/footer.makefile index 028299d..7bdf49c 100644 --- a/Source/C/Makefiles/footer.makefile +++ b/Source/C/Makefiles/footer.makefile @@ -11,10 +11,10 @@ $(LIBRARY): $(OBJECTS) $(AR) crs $@ $^ %.o : %.c - $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -Fo$@ + $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@ %.o : %.S - $(AS) -c $(ASFLAGS) $< -out:$@ + $(AS) -c $(ASFLAGS) $< -o $@ .PHONY: clean clean: