blob: 4678546b02d0886920c011ad6504e25d82eb4cbe [file] [log] [blame]
Nicolas Pennequin3e2c51d2007-11-22 18:07:40 +00001CFLAGS = -Wall
2LIBS = -lmtp
3OUTPUT = sendfirm
4
5all: $(OUTPUT)
6
7$(OUTPUT): sendfirm.c
8 gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c
9
10clean:
11 rm -f $(OUTPUT)