1
0

status mvp

This commit is contained in:
dtb
2025-03-27 02:08:07 -06:00
parent 9846c7ad27
commit 591f58d70a
9 changed files with 247 additions and 0 deletions

22
status/Makefile Normal file
View File

@@ -0,0 +1,22 @@
CFLAGS += -g
run: status
./status
clean:
rm -f status *.o
status: status.c order.c io.o keyval.o
$(CC) $(CFLAGS) -o $@ $@.c io.o keyval.o
order.c: order.def.c
- cp -v order.def.c $@
io.o: io.c io.h
$(CC) $(CFLAGS) -c -o $@ io.c
keyval.o: keyval.c keyval.h settings.c
$(CC) $(CFLAGS) -c -o $@ keyval.c
settings.c: settings.def.c
- cp -v settings.def.c $@