Files
secondo/Tools/DFS/qunitrunner-hdfs/Makefile
2026-01-23 17:03:45 +08:00

16 lines
340 B
Makefile

include ../Makefile.inc
SRCS = $(wildcard *.cpp)
OBJS = ${SRCS:.cpp=.o}
NAME = qunitrunner-hdfs
DEPS = ../dfs/libdfs.a ../qunit/libqunit.a ../dfshdfs/libdfshdfs.a ../shared/libshared.a -L$(HDFS_LIB) -lhdfs
CXXFLAGS += $(HDFS_INCLUDE)
all: $(NAME)
$(NAME): $(OBJS)
g++ $(OBJS) $(DEPS) -o $(NAME)
clean:
rm -f *.o *.a qunitrunner-hdfs