-
Notifications
You must be signed in to change notification settings - Fork 234
/
Makefile
125 lines (98 loc) · 2.82 KB
/
Makefile
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#
# This Makefile is used to bootstrap Nu.
# Use it to build "mininush", a simpler and statically-linked
# version of nush, the Nu shell.
#
SYSTEM = $(shell uname)
PREFIX ?= /usr/local
# TOOLCHAIN = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
# SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer
ifeq ($(shell test -e /usr/lib/libffi.dylib && echo yes), yes)
# Use the libffi that ships with OS X.
FFI_LIB = -L/usr/lib -lffi
FFI_INCLUDE = -I/usr/include/ffi
else
# Use the libffi that is distributed with Nu.
FFI_LIB = -L./libffi -lffi
FFI_INCLUDE = -I./libffi/include
endif
ifeq ($(shell test -e $(SDKROOT)/SDKs/MacOSX10.7.sdk && echo yes), yes)
LION_CFLAGS = -isysroot $(SDKROOT)/SDKs/MacOSX10.7.sdk
else
LION_CFLAGS =
endif
INCLUDES = $(FFI_INCLUDE) -I./include
ifeq ($(shell test -d $(PREFIX)/include && echo yes), yes)
INCLUDES += -I$(PREFIX)/include
endif
ifeq ($(SYSTEM), Darwin)
FRAMEWORKS = -framework Cocoa
endif
LIBS = -lobjc -lreadline -ldl -lm
ifeq ($(shell test -d $(PREFIX)/lib && echo yes), yes)
LIBDIRS += -L$(PREFIX)/lib
endif
C_FILES = $(wildcard objc/*.c)
OBJC_FILES = $(wildcard objc/*.m) $(wildcard main/*.m)
GCC_FILES = $(OBJC_FILES) $(C_FILES)
GCC_OBJS = $(patsubst %.m, %.o, $(OBJC_FILES)) $(patsubst %.c, %.o, $(C_FILES))
CC = clang
CFLAGS = -g -O0 -Wall -DMININUSH
MFLAGS = -fobjc-exceptions
#MFLAGS += `gnustep-config --debug-flags`
MFLAGS += -fconstant-string-class=NSConstantString -fobjc-nonfragile-abi -fblocks
CFLAGS += -I/usr/include/GNUstep
ifeq ($(SYSTEM), Darwin)
# as of around 10.7.3, clang becomes part of OS X
CC = /usr/bin/clang
ifneq ($(shell test -e $(CC) && echo yes), yes)
CC = $(TOOLCHAIN)/usr/bin/clang
endif
CFLAGS += -DMACOSX -DDARWIN $(LION_CFLAGS)
else
# CFLAGS += -DLINUX
MFLAGS += $(shell gnustep-config --debug-flags)
endif
ifeq ($(SYSTEM), Linux)
CFLAGS += -DLINUX
endif
ifeq ($(SYSTEM), FreeBSD)
CFLAGS += -DFREEBSD
endif
# OpenSolaris "uname" kernel is "SunOS"
ifeq ($(SYSTEM), SunOS)
CFLAGS += -DOPENSOLARIS
LIBS += -lcurses
endif
LDFLAGS =
LDFLAGS += $(FRAMEWORKS)
LDFLAGS += $(LIBS)
LDFLAGS += $(LIBDIRS)
LDFLAGS += $(FFI_LIB)
ifeq ($(SYSTEM), Darwin)
else
#LDFLAGS += $(shell gnustep-config --base-libs)
ifneq ($(SYSTEM), SunOS)
LDFLAGS += -Wl,--rpath -Wl,/usr/local/lib
#LDFLAGS += `gnustep-config --debug-flags`
LDFLAGS += -L/usr/local/lib
LDFLAGS += -ldispatch
LDFLAGS += -lgnustep-base
# LDFLAGS += -lgnustep-gui
LDFLAGS += -L/usr/lib/GNUstep
endif
endif
all: mininush
%.o: %.m
$(CC) $(CFLAGS) $(MFLAGS) $(INCLUDES) -c $< -o $@
%.o: %.c
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
.PHONY: mininush
mininush: $(GCC_OBJS)
$(CC) $(GCC_OBJS) $(CFLAGS) -o mininush $(LDFLAGS)
.PHONY: clean
clean:
rm -f objc/*.o main/*.o
.PHONY: clobber
clobber: clean
rm -f mininush