summaryrefslogtreecommitdiff
path: root/libc/misc/Makefile
blob: 01092bbd80fa4c4c58896997fbb567417e1ea104 (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
# Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
# This file is part of the Linux-8086 C library and is distributed
# under the GNU Library General Public License.

TOP=..
include $(TOP)/Make.defs

MSRC=aliases.c
MOBJ=abs.o raise.o bcopy.o bzero.o bcmp.o index.o rindex.o remove.o creat.o

ESRC=atexit.c
EOBJ=on_exit.o atexit.o __do_exit.o

GOBJ=atoi.o atol.o ltoa.o ltostr.o \
     ctype.o qsort.o bsearch.o rand.o lsearch.o getopt.o \
     itoa.o cputype.o strtol.o crypt.o

UOBJ=getenv.o putenv.o popen.o system.o


ifeq ($(PLATFORM),i86-DOS)
OBJ=$(MOBJ) $(EOBJ) $(GOBJ)
else
OBJ=$(MOBJ) $(EOBJ) $(GOBJ) $(UOBJ)
endif

# No ELKS strtod() until BCC does 16 bit FP...
ifeq ($(PLATFORM),i386-Linux)
OBJ+=strtod.o
endif

all: $(OBJ)

libc.a: $(OBJ)
	ar r ../$(LIBC) $(OBJ)
	@touch libc.a

clean:
	rm -f *.o libc.a

$(MOBJ): $(MSRC)
	$(CC) $(CFLAGS) -c -DL_$* -o $@ $(MSRC)

$(EOBJ): $(ESRC)
	$(CC) $(CFLAGS) -c -DL_$* -o $@ $(ESRC)

crypt.o: crypt.c
ifeq ($(PLATFORM),i386-Linux)
	$(CC) $(CFLAGS) $< -c -o $@ $(WALL)
else
	$(CC) $(CFLAGS) $< -c -o $@ -ansi
endif
	
strto%.o: strto%.c
ifeq ($(PLATFORM),i386-Linux)
	$(CC) $(CFLAGS) $< -c -o $@ $(WALL)
else
	$(CC) $(CFLAGS) $< -c -o $@ -ansi
endif