summaryrefslogtreecommitdiff
path: root/3rdparty
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/libconfig/Makefile.in6
-rw-r--r--3rdparty/mt19937ar/Makefile.in8
2 files changed, 9 insertions, 5 deletions
diff --git a/3rdparty/libconfig/Makefile.in b/3rdparty/libconfig/Makefile.in
index 12ff7572b..ab03d4154 100644
--- a/3rdparty/libconfig/Makefile.in
+++ b/3rdparty/libconfig/Makefile.in
@@ -10,7 +10,8 @@ LIBCONFIG_H = libconfig.h grammar.h parsectx.h scanctx.h scanner.h strbuf.h winc
all: $(LIBCONFIG_OBJ)
clean:
- rm -rf *.o
+ @echo " CLEAN libconfig"
+ @rm -rf *.o
help:
@echo "possible targets are 'all' 'clean' 'help'"
@@ -21,4 +22,5 @@ help:
#####################################################################
%.o: %.c $(LIBCONFIG_H)
- @CC@ @CFLAGS@ @DEFS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
+ @echo " CC $<"
+ @@CC@ @CFLAGS@ @DEFS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
diff --git a/3rdparty/mt19937ar/Makefile.in b/3rdparty/mt19937ar/Makefile.in
index 7cae3140b..63f75fdad 100644
--- a/3rdparty/mt19937ar/Makefile.in
+++ b/3rdparty/mt19937ar/Makefile.in
@@ -9,8 +9,9 @@ MT19937AR_H = mt19937ar.h
all: $(MT19937AR_OBJ)
-clean:
- rm -rf *.o
+clean:
+ @echo " CLEAN mt19937ar"
+ @rm -rf *.o
help:
@echo "possible targets are 'all' 'clean' 'help'"
@@ -21,4 +22,5 @@ help:
#####################################################################
%.o: %.c $(MT19937AR_H)
- @CC@ @CFLAGS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<
+ @echo " CC $<"
+ @@CC@ @CFLAGS@ @LDFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $<