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.
|
# |
|
# 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 |
|
|
|
|