diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-04-26 18:08:07 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-04-26 18:08:07 +0000 |
commit | dc6b593ba04fb47cb0c2c8b1b8bfa6d1b0b871ac (patch) | |
tree | bfb2393f5fc251d1a1eb1bf56c7150d30997c53e /libthreads | |
parent | 20f37c9db064f33ceaa5ee8ab6b74d577c2c5f8f (diff) |
Formerly Makefile.~5~
Diffstat (limited to 'libthreads')
-rw-r--r-- | libthreads/Makefile | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/libthreads/Makefile b/libthreads/Makefile index 40b3ef4a..9c800326 100644 --- a/libthreads/Makefile +++ b/libthreads/Makefile @@ -17,15 +17,21 @@ dir := libthreads +# This is currently i386 specific. XXX + include ../Makeconf -SRCS = call.c cprocs.c cthread_data.c cthreads.c malloc.c mig_support.c \ - stack.c sync.c machine/csw.s machine/lock.s machine/thread.c +GEN_SRCS = call.c cprocs.c cthread_data.c cthreads.c malloc.c mig_support.c \ + stack.c sync.c +I386_SRCS = i386/csw.s i386/lock.s i386/thread.c +SRCS = $(GEN_SRCS) $(I386_SRCS) OBJS = call.o cprocs.o cthread_data.o cthreads.o malloc.o mig_support.o \ stack.o sync.o csw.o lock.o thread.o -DIST_FILES = $(SRCS) Makefile cthread_internal.h cthreads.h options.h \ - machine/asm.h machine/cthreads.h +DIST_FILES = $(GEN_SRCS) Makefile cthread_internals.h cthreads.h options.h +I386_DIST_FILES = $(I386_SRCS) i386/asm.h i386/cthreads.h + +VPATH = .:i386 all: libthreads.a @@ -40,14 +46,22 @@ $(hurdinst)/lib/libthreads.a: libthreads.a $(headers)/cthreads.h: cthreads.h cp $< $@ -$(headers)/machine/cthreads.h: machine/cthreads.h +$(headers)/i386/cthreads.h: i386/cthreads.h cp $< $@ install: $(hurdinst)/lib/libthreads.a \ - $(headers)/cthreads.h $(headers)/machine/cthreads.h + $(headers)/cthreads.h $(headers)/i386/cthreads.h -$(OBJS): cthreads.h cthread_internal.h options.h \ - machine/asm.h machine/cthreads.h +$(OBJS): cthreads.h cthread_internals.h options.h \ + i386/asm.h i386/cthreads.h clean: rm -f libthreads.a *.o + +lndist: lndist-i386-files + +lndist-i386-files: $(hurdsource)/hurd-snap/$(dir)/i386 + ln $(I386_DIST_FILES) $(hurdsource)/hurd-snap/$(dir)/i386 + +$(hurdsource)/hurd-snap/$(dir)/i386: + mkdir $(hurdsource)/hurd-snap/$(dir)/i386 |