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.linux

19 lines
489 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-04-02 23:26:17 +00:00
ZMODEM = Xmodem/libzmodem.a
LUA = lua/liblua.a
2016-03-22 08:19:06 +00:00
OBJ = inih/ini.o bbs.o main.o users.o main_menu.o mail_menu.o doors.o bbs_list.o chat_system.o email.o files.o settings.o lua_glue.o
2016-03-22 01:48:59 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
2016-08-04 11:41:37 +00:00
magicka: $(OBJ)
2016-08-07 04:03:24 +00:00
$(CC) -o magicka -o $@ $^ $(CFLAGS) -L/usr/local/lib -lsqlite3 $(JAMLIB) $(ZMODEM) $(LUA) -lutil -lm -ldl -lssl -lcrypto -lssh
2016-08-04 11:41:37 +00:00
2016-03-22 01:48:59 +00:00
.PHONY: clean
clean:
2016-08-04 11:41:37 +00:00
rm -f $(OBJ) magicka