mirror of
https://github.com/LIV2/CIDER-Software.git
synced 2025-12-06 00:23:50 +00:00
Using the "UNLOCK BYPASS" commands for the flash it takes half as many cycles to program each word Also bump the task priority and enable compiler optimization
19 lines
313 B
Makefile
19 lines
313 B
Makefile
PROJECT=cflash
|
|
CC=m68k-amigaos-gcc
|
|
CFLAGS=-lamiga -mcrt=nix13 -mcpu=68000 -Wall -Wno-pointer-sign -O3 -fomit-frame-pointer
|
|
.PHONY: clean all
|
|
all: $(PROJECT)
|
|
|
|
OBJ = kick_flash.o \
|
|
ide_flash.o \
|
|
config.o \
|
|
main.o
|
|
|
|
SRCS = $(OBJ:%.o=%.c)
|
|
|
|
cflash: $(SRCS) *.h
|
|
${CC} -o $@ $(CFLAGS) $(SRCS)
|
|
|
|
clean:
|
|
-rm $(PROJECT)
|