IP400/rpi/eeprom/docs/eepromutils/Makefile

15 lines
246 B
Makefile
Raw Normal View History

2025-01-29 20:17:14 +02:00
# 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