This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/utils/ticproc/Makefile

17 lines
274 B
Makefile
Raw Normal View History

2016-08-10 11:07:59 +00:00
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