17 lines
299 B
Makefile
17 lines
299 B
Makefile
include ../Makefile.inc
|
|
|
|
SRCS = $(wildcard *.cpp)
|
|
OBJS = ${SRCS:.cpp=.o}
|
|
NAME = qunitrunner
|
|
DEPS = ../shared/libshared.a ../qunit/libqunit.a ../dfs/libdfs.a ../commlayer/libcommlayer.a
|
|
|
|
all: $(NAME)
|
|
|
|
$(NAME): $(OBJS)
|
|
g++ $(OBJS) $(DEPS) -o $(NAME)
|
|
|
|
main.o: main.cpp
|
|
|
|
clean:
|
|
rm -f *.o *.a $(NAME)
|