fx3tool/Makefile

13 lines
159 B
Makefile
Raw Normal View History

2022-01-20 04:20:10 +00:00
default: all
all: fx3tool
fx3tool: cyusb.h download_fx3.cpp libcyusb.cpp
$(CXX) -o "$@" $^ -lusb-1.0
clean:
@$(RM) -v fx3tool
.PHONY: all default clean