summaryrefslogtreecommitdiff
path: root/libthreads/Makefile.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'libthreads/Makefile.GNU')
-rw-r--r--libthreads/Makefile.GNU33
1 files changed, 0 insertions, 33 deletions
diff --git a/libthreads/Makefile.GNU b/libthreads/Makefile.GNU
deleted file mode 100644
index fd33c9a7..00000000
--- a/libthreads/Makefile.GNU
+++ /dev/null
@@ -1,33 +0,0 @@
-CPPFLAGS = -nostdinc -I. -I/usr1/gnu/DIST/include
-CFLAGS = -g -O
-CPP = /usr1/gnu/DIST/lib/gcc-cpp
-AS = as
-AR = ar
-RANLIB = ranlib
-CC = gcc
-
-VPATH=.:i386
-
-OBJS = cprocs.o cthreads.o malloc.o \
- mig_support.o stack.o sync.o \
- thread.o lock.o csw.o
-
-all: libthreads.a
-
-install: all
- cp libthreads.a /usr1/gnu/DIST/lib/libthreads.a
- ranlib /usr1/gnu/DIST/lib/libthreads.a
-
-clean:
- rm -f lib*.a Makedep* a.out core errs \
- *.d *.s *.S *.o *.BAK *.CKP */*.BAK */*.CKP
-
-libthreads.a: $(OBJS)
- rm -f $@
- $(AR) crv $@ $(OBJS)
- $(RANLIB) $@
-
-%.o: %.s
- $(CPP) $(CPPFLAGS) $< > $*.as
- $(AS) -o $@ $*.as
- rm -f $*.as