Commit 8f618960 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

Syncroniszed vclean target; fixed some comments.

parent 41572648
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ clean: .SYMBOLIC
	-$(RM) $(OBJS_DYN)
	-$(RM) $(RESOURCE) $(LINK_ARG) $(LIB_ARG)

vclean realclean: clean .SYMBOLIC
vclean distclean: clean .SYMBOLIC
	-$(RM) $(TARGETS) $(LIBNAME).map $(LIBNAME).sym
	-$(RD) $(OBJ_BASE)\stat
	-$(RD) $(OBJ_BASE)\dyn
+1 −2
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ $(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENC
clean:
	-$(RM) $(libcurl_a_OBJECTS) $(RESOURCE)

distrib: clean
distclean vclean: clean
	-$(RM) $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY) $(libcurl_dll_a_LIBRARY)

FORCE: ;
@@ -156,4 +156,3 @@ FORCE: ;
$(LIBCARES_PATH)/libcares.a:
	$(MAKE) -C $(LIBCARES_PATH) -f Makefile.m32
+3 −3
Original line number Diff line number Diff line
@@ -84,14 +84,14 @@ else
	CC = gcc
endif
PERL	= perl
# a native win32 awk can be downloaded from here:
# Here you can find a native Win32 binary of the original awk:
# http://www.gknw.net/development/prgtools/awk-20070501.zip
AWK	= awk
YACC	= bison -y
CP	= cp -afv
MKDIR	= mkdir
# RM	= rm -f
# if you want to mark the target as MTSAFE you will need a tool for
# If you want to mark the target as MTSAFE you will need a tool for
# generating the xdc data for the linker; here's a minimal tool:
# http://www.gknw.net/development/prgtools/mkxdc.zip
MPKXDC	= mkxdc
@@ -269,7 +269,7 @@ clean:
	-$(RM) curl_config.h
	-$(RM) -r $(OBJDIR)

distclean: clean
distclean vclean: clean
	-$(RM) $(TARGET).$(LIBEXT) $(TARGET).nlm
	-$(RM) certdata.txt ca-bundle.crt

+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ clean: .SYMBOLIC
	-$(RM) $(OBJS)
	-$(RM) $(RESOURCE) $(LINK_ARG)

vclean realclean: clean .SYMBOLIC
vclean distclean: clean .SYMBOLIC
	-$(RD) $(OBJ_DIR)
	-$(RM) curl.exe curl.map curl.sym hugehelp.c

+1 −2
Original line number Diff line number Diff line
@@ -159,7 +159,6 @@ ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs"
endif
	-$(RM) $(curl_OBJECTS) $(RESOURCE)

distrib: clean
distclean vclean: clean
	-$(RM) $(curl_PROGRAMS)
Loading