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

17 lines
346 B
Makefile
Raw Normal View History

2016-03-22 01:48:59 +00:00
CC=cc
CFLAGS=-I/usr/local/include
DEPS = bbs.h
2016-03-25 00:58:57 +00:00
JAMLIB = jamlib/jamlib.a
2016-03-22 08:19:06 +00:00
2016-03-25 10:21:28 +00:00
OBJ = inih/ini.o bbs.o main.o users.o main_menu.o mail_menu.o doors.o bbs_list.o
2016-03-22 01:48:59 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
2016-03-25 00:58:57 +00:00
magicka: $(OBJ)
2016-03-26 00:58:23 +00:00
$(CC) -o magicka -o $@ $^ $(CFLAGS) -L/usr/local/lib -lsqlite3 $(JAMLIB) -lutil
2016-03-22 01:48:59 +00:00
.PHONY: clean
clean:
rm -f $(OBJ) magicka