mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-06 12:31:32 +02:00
Update game to use TOML format for persistent data
This commit is contained in:
parent
18c92e2357
commit
2dcf2d7311
209 changed files with 12983 additions and 1982 deletions
|
|
@ -16,11 +16,11 @@ PROFILE =
|
|||
|
||||
BINDIR = ../bin
|
||||
|
||||
CFLAGS = @CFLAGS@ $(MYFLAGS) $(PROFILE)
|
||||
CFLAGS = @CFLAGS@ $(MYFLAGS) $(PROFILE) -I../third_party/tomlc99
|
||||
|
||||
LIBS = @LIBS@ @CRYPTLIB@ @NETLIB@
|
||||
|
||||
SRCFILES := $(shell ls *.c | sort)
|
||||
SRCFILES := $(shell ls *.c | sort) ../third_party/tomlc99/toml.c
|
||||
OBJFILES := $(patsubst %.c,%.o,$(SRCFILES))
|
||||
|
||||
default: all
|
||||
|
|
@ -46,6 +46,7 @@ $%.o: %.c
|
|||
|
||||
clean:
|
||||
rm -f *.o depend
|
||||
rm -f ../third_party/tomlc99/toml.o
|
||||
rm -f ./tests/*.o depend
|
||||
|
||||
# Dependencies for the object files (automagically generated with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue