MARC interface implemented. Minor bugs fixed. fmltest can
[egate.git] / fml / Makefile
index db2b779..aa499a5 100644 (file)
@@ -1,15 +1,15 @@
 # FML interpreter. Europagate, 1995
 #
-# $Id: Makefile,v 1.3 1995/02/09 16:06:04 adam Exp $
+# $Id: Makefile,v 1.4 1995/02/10 15:50:54 adam Exp $
 
 SHELL=/bin/sh
-INCLUDE=-I../include
+INCLUDE=-I../egate/include -I.
 TPROG1=fmltest
 CFLAGS=-g -Wall -pedantic 
 DEFS=$(INCLUDE)
 LIB=fml.a 
 PO = fmltoken.o fmlmem.o fml.o fmlsym.o fmlrel.o fmlarit.o fmllist.o \
-fmlcall.o fmlcalls.o
+fmlcall.o fmlcalls.o fmlmarc.o
 
 CPP=cc -E
 CC=gcc
@@ -17,7 +17,7 @@ CC=gcc
 all: $(LIB) $(TPROG1) $(TPROG2)
 
 $(TPROG1): $(TPROG1).o $(LIB) 
-       $(CC) $(CFLAGS) -o $(TPROG1) $(TPROG1).o $(LIB)
+       $(CC) $(CFLAGS) -o $(TPROG1) $(TPROG1).o $(LIB) ../egate/lib/util.a
 
 $(LIB): $(PO)
        rm -f $(LIB)