rockbox/utils/MTP/Makefile
2007-11-22 18:07:40 +00:00

11 lines
157 B
Makefile

CFLAGS = -Wall
LIBS = -lmtp
OUTPUT = sendfirm
all: $(OUTPUT)
$(OUTPUT): sendfirm.c
gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c
clean:
rm -f $(OUTPUT)