Commit c4656c5e authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

imake: also silence makedepend

parent ffc723e7
...@@ -6,12 +6,12 @@ ...@@ -6,12 +6,12 @@
#define RemoveFileQuiet(file) @$(RM) -f file \&>/dev/null #define RemoveFileQuiet(file) @$(RM) -f file \&>/dev/null
#define ObjectCompile(options) RemoveFileQuiet($@) @@\ #define RunPrintIfFailed(cmd) @cmd || { echo failed command: cmd; exit 1; }
#define ObjectCompile(options) RemoveFileQuiet($@) @@\
ClearmakeOSName \ ClearmakeOSName \
@echo \ \ CC $*.c @@\ @echo \ \ CC $*.c @@\
@$(CC) -c $(CFLAGS) options $*.c || { echo \ \ CC failed: $(CC)·-c·$(CFLAGS)·options·$*.c; exit 1; } RunPrintIfFailed($(CC) -c $(CFLAGS) options $*.c)
#define RunPrintIfFailed(cmd) @cmd || { echo failed command: cmd; exit 1; }
#define NormalLibraryTarget(libname,objlist) @@\ #define NormalLibraryTarget(libname,objlist) @@\
AllTarget(LibraryTargetName(libname)) @@\ AllTarget(LibraryTargetName(libname)) @@\
...@@ -23,3 +23,8 @@ LibraryTargetName(libname): objlist $(EXTRALIBRARYDEPS) @@\ ...@@ -23,3 +23,8 @@ LibraryTargetName(libname): objlist $(EXTRALIBRARYDEPS) @@\
RunPrintIfFailed(RanLibrary($@)) @@\ RunPrintIfFailed(RanLibrary($@)) @@\
RunPrintIfFailed(_LinkBuildLibrary($@)) RunPrintIfFailed(_LinkBuildLibrary($@))
#define DependTarget() @@\
DependDependency() @@\
@@\
depend:: @@\
RunPrintIfFailed($(DEPEND) $(DEPENDFLAGS) -- $(ALLDEFINES) $(DEPEND_DEFINES) -- $(SRCS))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment