u8g2-copy/sys/arm/lpc804/hex2lpc/Makefile

18 lines
225 B
Makefile
Raw Normal View History

2019-08-19 06:29:58 +08:00
#
# hex2lpc: Linux flash utility for LPC8xx devices
#
2019-09-21 03:30:59 +08:00
CFLAGS = -g -pg -Wall
2019-08-19 06:29:58 +08:00
#CFLAGS = -O4 -Wall
SRC = hex2lpc.c
OBJ = $(SRC:.c=.o)
hex2lpc: $(SRC)
$(CC) -Wall -g $(LDFLAGS) $(SRC) -o hex2lpc
clean:
-rm ./hex2lpc