13 lines
159 B
Makefile
13 lines
159 B
Makefile
|
|
||
|
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
|