forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (30 loc) · 1.16 KB
/
Copy pathMakefile
File metadata and controls
37 lines (30 loc) · 1.16 KB
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
# Makefile for libc
.include "Makefile.inc"
LIB= c
CPPFLAGS+=-O -D_MINIX -D_POSIX_SOURCE
.include "${.CURDIR}/ansi/Makefile.inc"
.include "${.CURDIR}/asyn/Makefile.inc"
.include "${.CURDIR}/ip/Makefile.inc"
.include "${.CURDIR}/math/Makefile.inc"
.include "${.CURDIR}/other/Makefile.inc"
.include "${.CURDIR}/posix/Makefile.inc"
.include "${.CURDIR}/regex/Makefile.inc"
.include "${.CURDIR}/stdio/Makefile.inc"
.include "${.CURDIR}/stdtime/Makefile.inc"
.include "${.CURDIR}/syscall/Makefile.inc"
.include "${.CURDIR}/sysvipc/Makefile.inc"
.include "${.CURDIR}/wchar/Makefile.inc"
.include "${.CURDIR}/arch/${ARCH}/int64/Makefile.inc"
.include "${.CURDIR}/arch/${ARCH}/misc/Makefile.inc"
.include "${.CURDIR}/arch/${ARCH}/math/Makefile.inc"
.include "${.CURDIR}/arch/${ARCH}/rts/Makefile.inc"
.include "${.CURDIR}/arch/${ARCH}/string/Makefile.inc"
.if ${COMPILER_TYPE} == "ack"
.include "${.CURDIR}/ack/fphook/Makefile.inc"
.include "${.CURDIR}/ack/math/Makefile.inc"
.include "${.CURDIR}/ack/rts/Makefile.inc"
.elif ${COMPILER_TYPE} == "gnu"
.include "${.CURDIR}/gnu/ieee_float/Makefile.inc"
.include "${.CURDIR}/gnu/arch/${ARCH}/rts/Makefile.inc"
.endif
.include <minix.lib.mk>