Files
LCD2USB/testapp/Makefile.macos
T
2016-01-12 20:42:20 +01:00

15 lines
142 B
Makefile

#
# Makefile
#
APP = lcd2usb
all: $(APP)
clean:
rm -f $(APP)
$(APP): $(APP).c
$(CC) -Wall -I/sw/include -o $@ $(APP).c -L/sw/lib -lusb