Files
rippled/examples/fuzzing_client/Makefile
Vinnie Falco b1e689fed3 Squashed 'src/cpp/websocketpp/' content from commit 1ec36a4
git-subtree-dir: src/cpp/websocketpp
git-subtree-split: 1ec36a47468a23f01754fa3a086874e13a4d52d9
2013-05-03 16:47:44 -07:00

18 lines
337 B
Makefile

BOOST_LIBS=boost_system boost_date_time boost_thread boost_regex boost_random
include ../common.mk
LDFLAGS := $(LDFLAGS) -lpthread
fuzzing_client: fuzzing_client.o
$(CXX) $(CFLAGS) $^ -o $@ $(LDFLAGS)
%.o: %.cpp
$(CXX) -c $(CFLAGS) -o $@ $^
# cleanup by removing generated files
#
.PHONY: clean
clean:
rm -f *.o fuzzing_client