aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.dj
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-06-13 18:11:17 +0000
committerYang Tse <yangsita@gmail.com>2009-06-13 18:11:17 +0000
commit169e94d68b82d7da6a4fc06c6ec2880e3e53196b (patch)
tree8ad33248bd8f7e5e4f5f8443562891b5fc047130 /src/makefile.dj
parent0cc81840571accc48781c47b2c84e32fc5445846 (diff)
improve usability with UNIX-like shells or a DOS command interpreters
Diffstat (limited to 'src/makefile.dj')
-rw-r--r--src/makefile.dj30
1 files changed, 19 insertions, 11 deletions
diff --git a/src/makefile.dj b/src/makefile.dj
index 60f13f24d..4a460bad9 100644
--- a/src/makefile.dj
+++ b/src/makefile.dj
@@ -39,14 +39,6 @@ CFLAGS += -DUSE_ENVIRONMENT
PROGRAM = curl.exe
OBJECTS += $(addprefix $(OBJ_DIR)/, $(CSOURCES:.c=.o))
-ifneq ($(findstring COMMAND.COM,$(SHELL)),COMMAND.COM)
- ifneq ($(findstring CMD.EXE,$(SHELL)),CMD.EXE)
- ifneq ($(findstring 4DOS.COM,$(SHELL)),4DOS.COM)
- IS_UNIX_SHELL = 1
- endif
- endif
-endif
-
all: $(OBJ_DIR) config.h $(PROGRAM)
@echo Welcome to cURL
@@ -67,11 +59,27 @@ hugehelp.c: ../docs/MANUAL ../docs/curl.1 mkhelp.pl
groff -Tascii -man ../docs/curl.1 | \
perl -w mkhelp.pl ../docs/MANUAL > $@
-clean:
- - rm -f $(OBJECTS) config.h
+# clean generated files
+#
+genclean:
+ - $(DELETE) config.h
+ - $(DELETE) hugehelp.c
+
+# clean object files and subdir
+#
+objclean: genclean
+ - $(DELETE) $(OBJ_DIR)$(DS)*.o
+ - $(RMDIR) $(OBJ_DIR)
+
+# clean without removing built program
+#
+clean: objclean
+ - $(DELETE) depend.dj
+# clean everything
+#
realclean vclean: clean
- - rm -f $(PROGRAM) hugehelp.c depend.dj
+ - $(DELETE) $(PROGRAM)
-include depend.dj