IP400/rpi/eeprom/docs/eepromutils/Makefile
2025-01-29 11:17:14 -07:00

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