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/Makefile
2016-03-22 18:19:06 +10:00

17 lines
327 B
Makefile

CC=cc
CFLAGS=-I/usr/local/include
DEPS = bbs.h
JAMLIB = /usr/local/lib/libjam.a
OBJ = inih/ini.o bbs.o main.o users.o main_menu.o mail_menu.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
magicka: $(OBJ)
$(CC) -o magicka -o $@ $^ $(CFLAGS) -L/usr/local/lib -lsqlite3 $(JAMLIB)
.PHONY: clean
clean:
rm -f $(OBJ) magicka