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 13:07:42 +10:00

15 lines
283 B
Makefile

CC=cc
CFLAGS=-I/usr/local/include
DEPS = bbs.h
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
.PHONY: clean
clean:
rm -f $(OBJ) magicka