Files
rippled/examples/fuzzing_client/Makefile
2012-03-14 12:52:55 +01:00

16 lines
304 B
Makefile

BOOST_LIBS=boost_system boost_date_time boost_thread boost_regex boost_random
include ../common.mk
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