/
Sapphire/bin/
Sapphire/db/
Sapphire/db/OLC_rooms/
Sapphire/db/abi/
Sapphire/db/em_src/
Sapphire/db/helps/
Sapphire/db/helps/emman/ifunc/
Sapphire/db/npcs/Tatt/
Sapphire/db/objects/Tatt/
Sapphire/db/q_data/
Sapphire/db/rooms/Tatt/
Sapphire/doc/
Sapphire/doc/em/
Sapphire/etc/
Sapphire/src/abic/
Sapphire/src/areacon/
Sapphire/src/client/
Sapphire/src/embc/
Sapphire/src/emi/
Sapphire/src/emi/test/
Sapphire/src/include/
Sapphire/src/sapphire/em/
Sapphire/src/tcon/
#
# Makefile for the Automatic Binary Interface Compiler
# By Christopher D. Granz
#

CC      = gcc
PROG    = ../../bin/abic

SYS_DEF = -D_sysBSD
GGDB    = -ggdb
OPTIONS = -fsigned-char
DEFINES = $(SYS_DEF) -DDEBUG
FLAGS   = -O3 -Wall $(OPTIONS) -I../include -I- $(DEFINES) $(GGDB)
OFILES  = main.o memory.o fileio.o error.o

README  = ../../README

$(PROG): $(OFILES)
	$(CC) -o $(PROG) $(OFILES)
#	cat $(README)

$(OFILES):
	$(CC) -c -g $(FLAGS) $<

clean:
	rm -f *.o