summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorrpj <rpj>1999-02-08 21:19:53 +0000
committerrpj <rpj>1999-02-08 21:19:53 +0000
commit9e253ed18b58158600fe1b4eed306c11523e7a53 (patch)
tree7583ba194efd2f8c8b035866d0f63a36d7bbb216 /Makefile.in
parent856068d292843ed7e8b3c49ecf55bd5f5c1b2368 (diff)
Fri Feb 5 13:42:30 1999 Ross Johnson <rpj@swan.canberra.edu.au>
* semaphore.c: Comment format changes. Wed Feb 3 13:04:44 1999 Ross Johnson <rpj@swan.canberra.edu.au> * cleanup.c: Rename _pthread_*_cleanup() to pthread_*_cleanup(). * pthread.def: Ditto. * pthread.h: Ditto. * pthread.def (pthread_cleanup_push): Remove from export list; the function is defined as a macro under all compilers. (pthread_cleanup_pop): Ditto. * pthread.h: Remove #if defined().
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index b7db1af..91a1580 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,3 +1,5 @@
+RM = erase
+
CC = g++
# Mingw32
@@ -18,6 +20,7 @@ DLL = pthread.dll
LIB = libpthread32.a
+
all: $(DLL)
$(LIB): $(OBJS)
@@ -34,6 +37,11 @@ $(DLL): $(OBJS)
dlltool --def $*.def --output-lib $*.lib --dllname $@
clean:
- -rm *~
- -rm $(LIB) *.o *.exe
- -rm $(DLL) $(DLL:.dll=.base) $(DLL:.dll=.exp) $(DLL:.dll=.lib)
+ -$(RM) *~
+ -$(RM) $(LIB)
+ -$(RM) *.o
+ -$(RM) *.exe
+ -$(RM) $(DLL)
+ -$(RM) $(DLL:.dll=.base)
+ -$(RM) $(DLL:.dll=.exp)
+ -$(RM) $(DLL:.dll=.lib)