added utils

This commit is contained in:
adrcs 2025-01-29 11:17:14 -07:00 committed by GitHub
parent a9a3f739b4
commit a9b13d2c39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
85 changed files with 9213 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# 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