summaryrefslogtreecommitdiff
path: root/3rdparty/mt19937ar/Makefile.in
diff options
context:
space:
mode:
authorshenhuyong <shenhuyong@hotmail.com>2013-10-05 14:02:18 +0800
committershenhuyong <shenhuyong@hotmail.com>2013-10-05 14:02:18 +0800
commit0a14a122a02aeac9b8cf007eb727cdab846f2329 (patch)
tree356d243254912e73d6991a03f877dbea063986b8 /3rdparty/mt19937ar/Makefile.in
parentf4fb487fbd563ead914ebdc64ae8074650469375 (diff)
parentd6965a8072c5a768f798a4a58e525b695c702afd (diff)
downloadhercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.tar.gz
hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.tar.bz2
hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.tar.xz
hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.zip
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to '3rdparty/mt19937ar/Makefile.in')
-rw-r--r--3rdparty/mt19937ar/Makefile.in17
1 files changed, 10 insertions, 7 deletions
diff --git a/3rdparty/mt19937ar/Makefile.in b/3rdparty/mt19937ar/Makefile.in
index c48848c8d..5d8e19994 100644
--- a/3rdparty/mt19937ar/Makefile.in
+++ b/3rdparty/mt19937ar/Makefile.in
@@ -8,19 +8,22 @@ CC = @CC@
export CC
#####################################################################
-.PHONY: all clean help
+.PHONY: all clean buildclean help
all: $(MT19937AR_OBJ)
-clean:
- @echo " CLEAN mt19937ar"
+buildclean:
+ @echo " CLEAN mt19937ar (build temp files)"
@rm -rf *.o
+clean: buildclean
+ @echo " CLEAN mt19937ar"
+
help:
- @echo "possible targets are 'all' 'clean' 'help'"
- @echo "'all' - builds $(MT19937AR_OBJ)"
- @echo "'clean' - deletes $(MT19937AR_OBJ)"
- @echo "'help' - outputs this message"
+ @echo "possible targets are 'all' 'clean' 'buildclean' 'help'"
+ @echo "'all' - builds $(MT19937AR_OBJ)"
+ @echo "'clean', 'buildclean' - deletes $(MT19937AR_OBJ)"
+ @echo "'help' - outputs this message"
#####################################################################