Experimental TIC file Processor

This commit is contained in:
Andrew Pamment
2016-08-10 21:07:59 +10:00
parent b84d9af16a
commit 3834e2acf7
4 changed files with 454 additions and 0 deletions

16
utils/ticproc/Makefile Normal file
View File

@@ -0,0 +1,16 @@
CC=cc
CFLAGS=-I/usr/local/include
DEPS = ticproc.c
OBJ = ticproc.o ../../inih/ini.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
ticproc: $(OBJ)
$(CC) -o ticproc -o $@ $^ $(CFLAGS) -L/usr/local/lib -lsqlite3
.PHONY: clean
clean:
rm -f $(OBJ) ticproc