summaryrefslogtreecommitdiffstats
path: root/utils/MTP/Makefile
blob: 4678546b02d0886920c011ad6504e25d82eb4cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS = -Wall
LIBS = -lmtp
OUTPUT = sendfirm

all: $(OUTPUT)

$(OUTPUT): sendfirm.c
	gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c

clean:
	rm -f $(OUTPUT)