mirror of
https://github.com/adrcs/ip400.git
synced 2025-04-21 11:13:42 +03:00
15 lines
246 B
Makefile
15 lines
246 B
Makefile
# Current tools are eepmake and eepdump
|
|
|
|
CC ?= gcc
|
|
|
|
all: eepmake eepdump
|
|
|
|
eepmake: eeptypes.h eepmake.c
|
|
$(CC) eepmake.c -o eepmake -Wno-format
|
|
|
|
eepdump: eeptypes.h eepdump.c
|
|
$(CC) eepdump.c -o eepdump -Wno-format
|
|
|
|
clean:
|
|
rm -f eepmake eepdump
|