Regex overhaul
[io/quag.git] / Makefile.lib
blob6321ed404b6b2f154bdb713492c398b5ae8e9da6
1 ifeq ($(shell [ -f Makefile.local ] && echo true),true)
2 ALL_BEGIN := $(MAKE) -f Makefile.local all_begin
3 ALL_END := $(MAKE) -f Makefile.local all_end
4 MAKE_LOCAL_CLEAN := $(MAKE) -f Makefile.local clean
5 else
6 ALL_BEGIN := 
7 ALL_END := 
8 MAKE_LOCAL_CLEAN := 
9 endif
11 #CC ?= g++
13 RANLIB ?= ranlib
14 AR     ?= ar
15 ARFLAGS := rcu 
16 AROUTFLAG :=
17 CCOUTFLAG := -o 
18 LINKDLL := $(CC)
19 LINKDLLOUTFLAG := -o 
20 LINKDIRFLAG := -L
21 LINKLIBFLAG := -l
23 # may need to remove --param max-inline-insns-single=500 for older versions of gccs
24 WARN :=-Wstrict-prototypes 
25 #-Winline
26 #--param max-inline-insns-single=500
28 #-ansi -pedantic
29 OPTIMIZE :=-O3 -g 
30 #-msse2 -msse -mmmx
31 #OPTIMIZE :=-O3 -ffast-math -ftree-vectorize  -ftree-vectorizer-verbose=4
32 DLL_SUFFIX := so
33 DLL_COMMAND := -shared
34 FLAT_NAMESPACE :=
35 dependson := $(shell cat depends)
37 HEADERS  :=-I. -I./source
38 others := $(dependson)
39 others := $(addprefix -I../,$(others))
40 others := $(addsuffix /_build/headers,$(others))
41 HEADERS += $(others)
43 DLL_L := $(dependson)
44 DLL_L := $(addprefix -L../,$(DLL_L))
45 DLL_L := $(addsuffix /_build/dll,$(DLL_L))
47 DLL_l := $(dependson)
48 DLL_l := $(addprefix -l,$(DLL_l))
50 CFLAGS = $(OPTIMIZE) $(WARN) $(HEADERS) #--param max-inline-insns-single=500
52 # Uncommment for Coros to register their stack with Valgrind
53 #CFLAGS += -DUSE_VALGRIND
55 ### PLATFORM #####################################################
57 SYS ?= $(shell uname -s)
59 ifeq ($(SYS),Darwin)
60 CFLAGS += -falign-loops=16
61 CFLAGS += -fPIC
62 DLL_SUFFIX := dylib
63 DLL_COMMAND := -dynamiclib
64 FLAT_NAMESPACE := -flat_namespace
66 hasEditLib := $(wildcard ../../tools/editlib_test/editlib_test)
67 ifneq ($(strip $(hasEditLib)),)
68 DLL_EXTRAS := -ledit
69 endif
71 endif
73 ifeq ($(SYS),Linux)
74 CFLAGS += -falign-loops=16
75 CFLAGS += -fPIC
76 endif
78 ifeq ($(SYS),IRIX)
79 RANLIB ?= touch
80 endif
82 ifneq (,$(findstring CYGW,$(SYS)))
83 DLL_SUFFIX := dll
84 endif
86 ifneq (,$(findstring MINGW,$(SYS)))
87 DLL_SUFFIX := dll
88 endif
90 ifneq (,$(findstring Windows,$(SYS)))
91 CC := cl -nologo
92 CCOUTFLAG :=-Fo
93 WARN := 
94 OPTIMIZE :=-Zi -MD -D_USE_MATH_DEFINES -DWIN32 -DNDEBUG -D_CRT_SECURE_NO_DEPRECATE
95 AR := link -lib
96 AROUTFLAG :=-out:
97 ARFLAGS :=
98 LINKDLL := link 
99 LINKDLLOUTFLAG :=-out:
100 LINKDIRFLAG := -libpath:
101 LINKLIBFLAG := lib
102 DLL_LIB_SUFFIX := .lib
103 DLL_COMMAND := -link /INCREMENTAL:NO -subsystem:WINDOWS -machine:X86 -DLL $(DEF_FILE)
104 DLL_SUFFIX := dll
105 DLL_EXTRAS := ws2_32.lib
106 FLAT_NAMESPACE :=
107 RANLIB := echo no ranlib
108 endif
110 ### FILES #########################################################
112 NAME    := $(notdir $(subst $() ,_,$(shell pwd)))
113 LIBR    := _build/lib/lib$(NAME).a
114 DLL     := _build/dll/lib$(NAME).$(DLL_SUFFIX)
115 infiles := $(wildcard source/*.c) 
116 #infiles += $(wildcard *.S)
117 asmfiles := $(wildcard source/*.S)
118 hfiles  := $(wildcard source/*.h)
119 objects := $(notdir $(infiles))
120 objects := $(basename $(objects))
121 objects := $(addsuffix .o,$(objects))
122 objects := $(addprefix _build/objs/,$(objects))
124 vmall_objects := $(notdir $(infiles))
125 vmall_objects := $(basename $(vmall_objects))
126 vmall_objects := $(addsuffix .o,$(vmall_objects))
127 vmall_objects := $(addprefix _build/vmall_objs/,$(vmall_objects))
130 DLL_L := $(dependson)
131 DLL_L := $(addprefix $(LINKDIRFLAG)../,$(DLL_L))
132 DLL_L := $(addsuffix /_build/dll,$(DLL_L))
134 DLL_l := $(dependson)
135 DLL_l := $(addprefix $(LINKLIBFLAG),$(DLL_l))
136 DLL_l := $(addsuffix $(DLL_LIB_SUFFIX),$(DLL_l))
138 DEF_FILE :=
140 ### RULES ###########################################################
142 all:
143         $(ALL_BEGIN) 
144         mkdir -p _build
145         mkdir -p _build/objs
146         mkdir -p _build/headers
147         mkdir -p _build/lib
148         mkdir -p _build/dll
149         $(MAKE) $(LIBR)
150         $(MAKE) $(DLL) 
151 ifneq (,$(findstring Windows,$(SYS)))
152         mkdir -p _build/vmall_objs
153         $(MAKE) vmall_objs
154 endif
155 ifneq (,$(hfiles))
156         cp $(hfiles) _build/headers
157 endif
158         $(ALL_END)
160 _build/objs/%.o: source/%.c
161         $(CC) -DINSTALL_PREFIX=\"$(INSTALL_PREFIX)\" $(CFLAGS) -c $< $(CCOUTFLAG)$@
163 _build/vmall_objs/%.o: source/%.c
164         $(CC) -DINSTALL_PREFIX=\"$(INSTALL_PREFIX)\" $(CFLAGS) \
165         -DBUILDING_IOVMALL_DLL -c $< $(CCOUTFLAG)$@
168 _build/vmall_objs:
169         mkdir -p $@
171 vmall_objs: _build/vmall_objs $(vmall_objects)
173 $(LIBR): $(objects)
174 ifneq ($(asmfiles),)
175         $(CC) $(CFLAGS) -c $(asmfiles) $(CCOUTFLAG)_build/objs/asm.o || true
176 endif
177         $(AR) $(ARFLAGS) $(AROUTFLAG)$@ _build/objs/*.o
178         $(RANLIB) $@
180 $(DLL): $(objects)
181         $(LINKDLL) $(DLL_COMMAND) $(FLAT_NAMESPACE) $(DLL_L) _build/objs/*.o $(LINKDLLOUTFLAG)$(DLL) $(DLL_l) $(DLL_EXTRAS)
183 clean:
184         rm -rf _build
185         $(MAKE_LOCAL_CLEAN)