d3858ffc26
Now major include files are comming from main Makefile, module need to add just their specific include path. To work make the include path absolute.
13 lines
189 B
Makefile
13 lines
189 B
Makefile
CC = gcc
|
|
CFLAGS = $(INCLUDE) -O0 -g3 -std=c11
|
|
LFLAGS =
|
|
DEPS =
|
|
OBJS = peer.o peerstore.o providerstore.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|