summaryrefslogtreecommitdiff
path: root/libthreads/Makefile
blob: 18752cd78b45d91868286435305942cf9bbc12d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# 
#   Copyright (C) 1994, 1995 Free Software Foundation, Inc.
#
#   This program is free software; you can redistribute it and/or
#   modify it under the terms of the GNU General Public License as
#   published by the Free Software Foundation; either version 2, or (at
#   your option) any later version.
#
#   This program is distributed in the hope that it will be useful, but
#   WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#   General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

# This is currently i386 specific. XXX 

dir := libthreads
makemode := library

# In GNU mig_support.c, sync.c and machine/lock.s are omitted; that work is
# all done in libc.
SRCS := call.c cprocs.c cthread_data.c cthreads.c stack.c malloc.c
I386SRCS := i386/csw.S i386/thread.c

# In GNU machine/cthreads.h is omitted; that work is done in libc headers.
LCLHDRS := cthread_internals.h options.h cthreads.h

OBJS = $(addsuffix .o,$(basename $(notdir $(SRCS) $(I386SRCS))))

OTHERTAGS = $(I386SRCS) $(I386HDRS)

# We need this to find <cthreads.h> in the source directory.
CPPFLAGS = -I. -I$(srcdir)/libthreads

libname = libthreads

# Don't put cthreads.h in installhdrs or else it will get installed into
# $(hurdinst)/include/hurd instead of $(hurdinst)/include.

VPATH = $(machine)

include ../Makeconf

# This is cheating, but it's a lot easier than writing PIC assembly
# code.
csw_pic.o: csw.o
	cp $< $@

install: install-cthreads.h
install-cthreads.h: cthreads.h
	$(INSTALL_DATA) cthreads.h $(includedir)/cthreads.h

lndist: lndist-i386-files

lndist-i386-files: $(srcdir)/hurd-snap/$(dir)/i386
	ln $(I386SRCS) $(I386HDRS) $(srcdir)/hurd-snap/$(dir)/i386

$(srcdir)/hurd-snap/$(dir)/i386:
	mkdir $(srcdir)/hurd-snap/$(dir)/i386