Usermode/libc++ - system_error and vector implementation
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / Makefile
1 # Acess2 C++ Library\r
2 # Makefile\r
3 \r
4 -include ../Makefile.cfg\r
5 \r
6 CPPFLAGS += \r
7 CFLAGS   += -Wall -Werror -Wextra\r
8 CXXFLAGS += -Wall -Werror -Wextra\r
9 ASFLAGS  +=\r
10 LDFLAGS  += -Map map.txt -lc\r
11 \r
12 OBJ  = misc.o new.o guard.o cxxabi.o typeinfo.o\r
13 OBJ += string.o\r
14 OBJ += exceptions.o exception_handling.o system_error.o\r
15 DEPFILES := $(OBJ:%.o=%.d)\r
16 BIN = libc++.so\r
17 ifeq ($(ARCHDIR),native)\r
18  OBJ := $(filter-out heap.o,$(OBJ))\r
19  BIN = libc++_acess.so\r
20 endif\r
21 \r
22 include ../Makefile.tpl\r

UCC git Repository :: git.ucc.asn.au