first commit

This commit is contained in:
valeh
2020-12-22 14:30:09 +02:00
commit 26b0ba5954
1832 changed files with 17777948 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#
# hex2lpc: Linux flash utility for LPC8xx devices
#
CFLAGS = -g -pg -Wall
#CFLAGS = -O4 -Wall
SRC = hex2lpc.c
OBJ = $(SRC:.c=.o)
hex2lpc: $(SRC)
$(CC) -Wall -g $(LDFLAGS) $(SRC) -o hex2lpc
clean:
-rm ./hex2lpc

File diff suppressed because it is too large Load Diff