X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=fml%2FMakefile;h=5978d46e845b656ec90959c435384c8ed9d6fff6;hb=3f6af0f3aa9f114cf562c28f2ed0b954e4c5d659;hp=aa499a52c0d22c181f374409093ce47347942389;hpb=372b7a22555387ae193ed303132342e654319420;p=egate.git diff --git a/fml/Makefile b/fml/Makefile index aa499a5..5978d46 100644 --- a/fml/Makefile +++ b/fml/Makefile @@ -1,23 +1,21 @@ # FML interpreter. Europagate, 1995 # -# $Id: Makefile,v 1.4 1995/02/10 15:50:54 adam Exp $ +# Makefile,v 1.9 1995/02/22 08:50:48 adam Exp SHELL=/bin/sh -INCLUDE=-I../egate/include -I. +INCLUDE=-I../include -I. TPROG1=fmltest CFLAGS=-g -Wall -pedantic +CPP=$(CC) -E DEFS=$(INCLUDE) -LIB=fml.a +LIB=../lib/fml.a PO = fmltoken.o fmlmem.o fml.o fmlsym.o fmlrel.o fmlarit.o fmllist.o \ -fmlcall.o fmlcalls.o fmlmarc.o - -CPP=cc -E -CC=gcc +fmlcall.o fmlcalls.o fmlmarc.o fmlstr.o all: $(LIB) $(TPROG1) $(TPROG2) $(TPROG1): $(TPROG1).o $(LIB) - $(CC) $(CFLAGS) -o $(TPROG1) $(TPROG1).o $(LIB) ../egate/lib/util.a + $(CC) $(CFLAGS) -o $(TPROG1) $(TPROG1).o $(LIB) ../lib/util.a $(LIB): $(PO) rm -f $(LIB)