blob: 4678546b02d0886920c011ad6504e25d82eb4cbe [file] [log] [blame]
CFLAGS = -Wall
LIBS = -lmtp
OUTPUT = sendfirm
all: $(OUTPUT)
$(OUTPUT): sendfirm.c
gcc $(CFLAGS) $(LIBS) -o $(OUTPUT) sendfirm.c
clean:
rm -f $(OUTPUT)