mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
Fixed the obnoxious problem that caused an entire directory to rebuild
even if you only change one .cpp file. Yaay llvm-svn: 97
This commit is contained in:
parent
d616582a7a
commit
d8f5378cf7
@ -20,7 +20,7 @@
|
||||
# in the current directory.
|
||||
#
|
||||
|
||||
# Default Rule:
|
||||
# Default Rule: Make sure it's also a :: rule
|
||||
all ::
|
||||
|
||||
# Default for install is to at least build everything...
|
||||
@ -115,11 +115,11 @@ all:: $(LIBNAME_G)
|
||||
#$(LIBNAME_O)
|
||||
# TODO: Enable optimized builds
|
||||
|
||||
$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir
|
||||
$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir Depend/.dir
|
||||
@echo ======= Linking $(LIBRARYNAME) release library =======
|
||||
$(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
|
||||
|
||||
$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir
|
||||
$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir Depend/.dir
|
||||
@echo ======= Linking $(LIBRARYNAME) debug library =======
|
||||
$(MakeSOG) -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
# in the current directory.
|
||||
#
|
||||
|
||||
# Default Rule:
|
||||
# Default Rule: Make sure it's also a :: rule
|
||||
all ::
|
||||
|
||||
# Default for install is to at least build everything...
|
||||
@ -115,11 +115,11 @@ all:: $(LIBNAME_G)
|
||||
#$(LIBNAME_O)
|
||||
# TODO: Enable optimized builds
|
||||
|
||||
$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir
|
||||
$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir Depend/.dir
|
||||
@echo ======= Linking $(LIBRARYNAME) release library =======
|
||||
$(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
|
||||
|
||||
$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir
|
||||
$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir Depend/.dir
|
||||
@echo ======= Linking $(LIBRARYNAME) debug library =======
|
||||
$(MakeSOG) -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user