c272beda05
lpcfix -c does what lpcrc did (fix the crc) lpxfix -p <num> sets the protection (CRP) levels new target "make protect" to enable CRP level 2.
12 lines
135 B
Makefile
12 lines
135 B
Makefile
CC = gcc
|
|
LD = gcc
|
|
LDFLAGS = -Wall -O2 -std=c99
|
|
EXES = lpcfix
|
|
|
|
all: $(EXES)
|
|
|
|
% : %.c
|
|
$(LD) $(LDFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
rm -f $(EXES)
|