summaryrefslogtreecommitdiff
path: root/3rdparty/libconfig/Makefile.in
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-10-07 13:41:02 -0300
committershennetsind <ind@henn.et>2013-10-07 13:41:02 -0300
commitdda77cb771769fcbf13765c0edf3e5da91f3666c (patch)
tree74154558d5fbc3782a6a1070f1ac0c8a0a4fdff3 /3rdparty/libconfig/Makefile.in
parentc56e3eb701658079f1de09db759f3b09327ec046 (diff)
parente7457d450f44f07881e9a8d9af25b068596f3df4 (diff)
downloadhercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.gz
hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.bz2
hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.xz
hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.zip
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to '3rdparty/libconfig/Makefile.in')
-rw-r--r--3rdparty/libconfig/Makefile.in17
1 files changed, 10 insertions, 7 deletions
diff --git a/3rdparty/libconfig/Makefile.in b/3rdparty/libconfig/Makefile.in
index 048a1b3b7..88c5eba96 100644
--- a/3rdparty/libconfig/Makefile.in
+++ b/3rdparty/libconfig/Makefile.in
@@ -8,19 +8,22 @@ CC = @CC@
export CC
#####################################################################
-.PHONY: all clean help
+.PHONY: all clean buildclean help
all: $(LIBCONFIG_OBJ)
-clean:
- @echo " CLEAN libconfig"
+buildclean:
+ @echo " CLEAN libconfig (build temp files)"
@rm -rf *.o
+clean: buildclean
+ @echo " CLEAN libconfig"
+
help:
- @echo "possible targets are 'all' 'clean' 'help'"
- @echo "'all' - builds $(LIBCONFIG_OBJ)"
- @echo "'clean' - deletes $(LIBCONFIG_OBJ)"
- @echo "'help' - outputs this message"
+ @echo "possible targets are 'all' 'clean' 'buildclean' 'help'"
+ @echo "'all' - builds $(LIBCONFIG_OBJ)"
+ @echo "'clean', 'buildclean' - deletes $(LIBCONFIG_OBJ)"
+ @echo "'help' - outputs this message"
#####################################################################