You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
221 B
18 lines
221 B
6 years ago
|
#
|
||
|
# hex2lpc: Linux flash utility for LPC8xx devices
|
||
|
#
|
||
|
|
||
|
CFLAGS = -g -Wall
|
||
|
#CFLAGS = -O4 -Wall
|
||
|
|
||
|
SRC = hex2lpc.c
|
||
|
|
||
|
OBJ = $(SRC:.c=.o)
|
||
|
|
||
|
hex2lpc: $(SRC)
|
||
|
$(CC) -Wall -g $(LDFLAGS) $(SRC) -o hex2lpc
|
||
|
|
||
|
clean:
|
||
|
-rm ./hex2lpc
|
||
|
|