summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrpj <rpj>1998-07-30 15:33:13 +0000
committerrpj <rpj>1998-07-30 15:33:13 +0000
commit46dc6c8f550e64ed07650b98ea437fdbb1de54c7 (patch)
tree8b524534506a5b6eb2071eea6218a57ff47a6198 /Makefile
parent1d10646cae6e5bf0c6f96b43b7766096be16a9e6 (diff)
Fri Jul 31 00:05:45 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* Makefile (SRCS): Create. Preliminary. * windows.h: Create. Contains Win32 definitions for compile testing. This is just a standin for the real one. * pthread.h (SIG_UNBLOCK): Fix typo. Was SIG_BLOCK. (windows.h): Add include. Required for CRITICAL_SECTION. (pthread_cond_t): Move enum declaration outside of struct definition. (unistd.h): Add include - may be temporary. * condvar.c (windows.h): Add include.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f0f3653
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+
+CFLAGS = -I.
+
+SRCS = attr.c cancel.c cleanup.c condvar.c create.c dll.c \
+ exit.c fork.c global.c misc.c mutex.c private.c sched.c \
+ signal.c sync.c tsd.c
+
+OBJS = attr.o cancel.o cleanup.o condvar.o create.o dll.o \
+ exit.o fork.o global.o misc.o mutex.o private.o sched.o \
+ signal.o sync.o tsd.o
+
+INCL = implement.h pthread.h windows.h
+
+all: $(OBJS) \ No newline at end of file