removed -i flag

This commit is contained in:
ceriel 1991-02-20 09:48:36 +00:00
parent 1c694d98d0
commit bb31795d33
4 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ TABGEN = $(EMHOME)/bin/tabgen
PROF = #-pg
CDEFS = $(EM_INCLUDES) $(LIB_INCLUDES)
CFLAGS = $(CDEFS) $(COPTIONS) -O $(PROF)
LDFLAGS = -i $(PROF)
LDFLAGS = $(PROF)
# Grammar files and their objects
LSRC = tokenfile.g declar.g statement.g expression.g program.g ival.g

View file

@ -19,7 +19,7 @@ HOMEDIR =
CFLAGS = -O $(PROFILE) $(INCLUDES) -DSTATIC= -DM2COMPILER=\"$(M2COMPILER)\" -DDEF_DIR=\"$(DEFDIR)\" $(HOMEDIR)
LINTFLAGS = -DSTATIC= -DNORCSID
MALLOC = $(LIBDIR)/malloc.o
LDFLAGS = -i $(PROFILE)
LDFLAGS = $(PROFILE)
LSRC = tokenfile.c program.c declar.c expression.c statement.c
LOBJ = tokenfile.o program.o declar.o expression.o statement.o
CSRC = LLlex.c LLmessage.c error.c main.c lib.c \

View file

@ -12,7 +12,7 @@ LIBRARY= $(MODLIB)/libem_mes.a $(MODLIB)/libemk.a \
$(MODLIB)/libstring.a \
$(MODLIB)/libsystem.a $(LEXLIB)
CFLAGS = -Dvoid=int -O $(INCL)
LDFLAGS = -i
LDFLAGS =
# void = int, because some compilers don't understand void
HSRC = code.h em.h expr.h sizes.h symtab.h token.h
CSRC = builtin.c code.c em.c expr.c keytab.c report.c symtab.c

View file

@ -24,6 +24,6 @@ opr:
make pr ^ opr
make: $(OBJS)
$(CC) -i -o make $(OBJS)
$(CC) -o make $(OBJS)
$(OBJS): h.h