17 lines
291 B
Makefile
17 lines
291 B
Makefile
|
|
include ../Makefile.inc
|
||
|
|
|
||
|
|
SRCS = $(wildcard *.cpp)
|
||
|
|
OBJS = ${SRCS:.cpp=.o}
|
||
|
|
NAME = indexnode
|
||
|
|
DEPS = ../commlayer/libcommlayer.a ../shared/libshared.a
|
||
|
|
|
||
|
|
all: $(NAME)
|
||
|
|
|
||
|
|
$(NAME): $(OBJS) ../commlayer/libcommlayer.a
|
||
|
|
g++ $(OBJS) $(DEPS) -o $(NAME) -lpthread
|
||
|
|
|
||
|
|
%.o : %.c
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f *.o *.a $(NAME)
|