]> rtime.felk.cvut.cz Git - frescor/fna.git/blob - src_frescan/Makefile
add group negotiations to frescan and change all the requests and messages to map...
[frescor/fna.git] / src_frescan / Makefile
1 .PHONY: none libfrescan clean cleanall
2
3 include ../config.mk
4 include ../rules.mk
5
6 SRCS := $(wildcard *.c)
7 OBJS := $(patsubst %.c,%.o,$(wildcard *.c))
8 HDRS := $(wildcard *.h)
9
10 libfrescan:  $(OBJS)
11         @exec echo -e "\n>> Building FRESCAN:";
12         ld -r -o libfrescan.o *.o
13         @mv libfrescan.o $(FNA_PATH)/lib
14         @exec echo ">> [OK]"
15
16 %.o: %.c $(SRCS) $(HDRS)
17         @$(CC) $(CFLAGS) -c $< # 1> /dev/null
18