rbb 2002/12/12 19:51:57
Modified: test Makefile.win
Log:
Add a clean target to the Windows Makefile
Revision Changes Path
1.3 +4 -1 apr/test/Makefile.win
Index: Makefile.win
===================================================================
RCS file: /home/cvs/apr/test/Makefile.win,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Makefile.win 12 Dec 2002 04:01:30 -0000 1.2
+++ Makefile.win 13 Dec 2002 03:51:57 -0000 1.3
@@ -21,11 +21,14 @@
LOCAL_LIBS=..\LibD\apr.lib
-CLEAN_TARGETS = testfile.tmp mod_test.slo proc_child.exe occhild.exe \
+CLEAN_TARGETS = mod_test.slo proc_child.exe occhild.exe \
testprocmutex.exe testglobalmutex.exe testshm.exe
INCDIR=../include
INCLUDES=/I "$(INCDIR)"
+
+clean:
+ del $(CLEAN_TARGETS) $(PROGRAMS) *.obj
.c.obj:
cl /nologo /c /MDd /W3 /GX /Zi /Od /DWIN32 /D_DEBUG /D_WINDOWS
/DAPR_DECLARE_STATIC $(INCLUDES) $<