Files
secondo/Tools/DFS/indexnode/Makefile

17 lines
291 B
Makefile
Raw Normal View History

2026-01-23 17:03:45 +08:00
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)