From 8b32771829b8908338c33c9ea1e3bed51e5232eb Mon Sep 17 00:00:00 2001 From: bje Date: Sun, 13 Sep 1998 04:38:15 +0000 Subject: 1998-09-13 Ben Elliston * 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. --- Makefile.in | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile.in (limited to 'Makefile.in') 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 -- cgit v1.2.3