summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorbje <bje>1998-09-13 04:38:15 +0000
committerbje <bje>1998-09-13 04:38:15 +0000
commit8b32771829b8908338c33c9ea1e3bed51e5232eb (patch)
tree5fb4931acabcc47ce815fa93363358b958f74058 /Makefile.in
parent1079e9e1d036a9a5d44ecf4c99ff42eb29366db3 (diff)
1998-09-13 Ben Elliston <bje@cygnus.com>
* configure.in: Test for required system features. * configure: Generate. * acconfig.h: New file. * config.h.in: Generate. * Makefile.in: Renamed from Makefile. * COPYING: Import from a recent GNU package. * config.guess: Likewise. * config.sub: Likewise. * install-sh: Likewise. * Makefile: Remove. * config.h: Likewise.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..dd2e1cc
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,18 @@
+
+CFLAGS = -I. -DHAVE_CONFIG_H -Wall
+
+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
+
+LIB = libpthread32.a
+
+all: $(LIB)
+
+$(LIB): $(OBJS)
+ $(AR) r $(LIB) $(OBJS)
+
+clean:
+ -rm $(LIB) *.o