You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
244 B
Makefile

CC = gcc
LIBS =
CFLAGS = -O2 -g -Wno-unused-result
.PHONY: all clean
all: balong-usbdload
clean:
rm *.o
rm balong-usbdload
#.c.o:
# $(CC) -o $@ $(LIBS) $^ qcio.o
balong-usbdload: balong-usbdload.o
@gcc $^ -o $@ $(LIBS)