blob: 87ad1e524b2a4e25b84ddbc421cc3ecd978667df (
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
|
# 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
OBJ=$(MOBJ) $(EOBJ) \
atoi.o atol.o ltoa.o ltostr.o \
ctype.o qsort.o bsearch.o rand.o lsearch.o getopt.o \
getenv.o putenv.o itoa.o cputype.o \
strtol.o popen.o system.o crypt.o
# 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
|