3e2c51d82c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15755 a1c6a512-1295-4272-9138-f99709370657
11 lines
157 B
Makefile
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)
|