crashtest-r0ket/tools/Makefile
Stefan `Sec` Zehl c272beda05 Replace lpcrc with lpcfix.
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.
2011-06-09 13:20:03 +02:00

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)