grapes / som / ChunkTrading / Makefile @ cb201402
History | View | Annotate | Download (321 Bytes)
1 |
BASE = ../.. |
---|---|
2 |
|
3 |
CFLAGS = -Wall |
4 |
CFLAGS += -Wdeclaration-after-statement |
5 |
CFLAGS += -Wno-switch -Wpointer-arith -Wredundant-decls |
6 |
CFLAGS += -Wno-pointer-sign |
7 |
CFLAGS += -g |
8 |
|
9 |
CPPFLAGS = -I$(BASE)/include -I.. |
10 |
|
11 |
OBJS = chunk_encoding.o chunk_delivery.o |
12 |
|
13 |
all: libtrading.a |
14 |
|
15 |
%.a: $(OBJS) |
16 |
ar rcs $@ $^ |
17 |
|
18 |
clean: |
19 |
rm -f *.a |
20 |
rm -f *.o |