diff options
author | shennetsind <ind@henn.et> | 2013-07-21 15:58:01 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-07-21 15:58:01 -0300 |
commit | dede3fb8bdfdbb8c49ebc7e9b5a0a2665033f8e8 (patch) | |
tree | 9b90aeae8d8922479f34e0ae7ea1c4aa99f39365 /3rdparty | |
parent | b2e12fbc71d2e5e1005c9daa386345a45105be03 (diff) | |
parent | d627f8f3cdebc07dfc54e762456f477806f0b3cb (diff) | |
download | hercules-dede3fb8bdfdbb8c49ebc7e9b5a0a2665033f8e8.tar.gz hercules-dede3fb8bdfdbb8c49ebc7e9b5a0a2665033f8e8.tar.bz2 hercules-dede3fb8bdfdbb8c49ebc7e9b5a0a2665033f8e8.tar.xz hercules-dede3fb8bdfdbb8c49ebc7e9b5a0a2665033f8e8.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/libconfig/Makefile.in | 5 | ||||
-rw-r--r-- | 3rdparty/mt19937ar/Makefile.in | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/3rdparty/libconfig/Makefile.in b/3rdparty/libconfig/Makefile.in index ee17298b4..f3c6e986d 100644 --- a/3rdparty/libconfig/Makefile.in +++ b/3rdparty/libconfig/Makefile.in @@ -4,6 +4,9 @@ LIBCONFIG_H = libconfig.h grammar.h parsectx.h scanctx.h scanner.h strbuf.h winc @SET_MAKE@ +CC = @CC@ +export CC + ##################################################################### .PHONY : all clean help @@ -23,4 +26,4 @@ help: %.o: %.c $(LIBCONFIG_H) @echo " CC $<" - @@CC@ @CFLAGS@ @DEFS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< + @$(CC) @CFLAGS@ @DEFS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< diff --git a/3rdparty/mt19937ar/Makefile.in b/3rdparty/mt19937ar/Makefile.in index 8a7b64669..b899c413f 100644 --- a/3rdparty/mt19937ar/Makefile.in +++ b/3rdparty/mt19937ar/Makefile.in @@ -4,6 +4,9 @@ MT19937AR_H = mt19937ar.h @SET_MAKE@ +CC = @CC@ +export CC + ##################################################################### .PHONY : all clean help @@ -23,4 +26,4 @@ help: %.o: %.c $(MT19937AR_H) @echo " CC $<" - @@CC@ @CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< + @$(CC) @CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< |