mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-16 00:04:59 +00:00
Remove duplicate external function definitions from gcdata.h renamed: inc/gc.h -> inc/gcdata.h modified: src/array2.c modified: src/array4.c modified: src/array6.c modified: src/asmbbt.c modified: src/asmbitblt.c modified: src/bbtsub.c modified: src/car-cdr.c modified: src/conspage.c modified: src/fvar.c modified: src/gc.c modified: src/gcarray.c modified: src/gccode.c modified: src/gcfinal.c modified: src/gchtfind.c modified: src/gcmain3.c modified: src/gcoflow.c modified: src/gcr.c modified: src/gcrcell.c modified: src/gcscan.c modified: src/gvar2.c modified: src/initsout.c modified: src/loopsops.c modified: src/mkcell.c modified: src/rplcons.c modified: src/storage.c modified: src/xc.c modified: src/z2.c
65 lines
1.8 KiB
Plaintext
65 lines
1.8 KiB
Plaintext
# Options for SunOS4, SPARC and X-Window
|
|
|
|
XFILES = $(OBJECTDIR)XClose.o \
|
|
$(OBJECTDIR)Cursor.o \
|
|
$(OBJECTDIR)XWindow.o \
|
|
$(OBJECTDIR)DoRing.o \
|
|
$(OBJECTDIR)DoScroll.o \
|
|
$(OBJECTDIR)XEvent.o \
|
|
$(OBJECTDIR)XGravity.o \
|
|
$(OBJECTDIR)XInit.o \
|
|
$(OBJECTDIR)InitXevent.o \
|
|
$(OBJECTDIR)XKbdMouse.o \
|
|
$(OBJECTDIR)LispWindow.o \
|
|
$(OBJECTDIR)LispXbitblt.o \
|
|
$(OBJECTDIR)XKeyboard.o \
|
|
$(OBJECTDIR)MakeXicon.o \
|
|
$(OBJECTDIR)OpenDisplay.o \
|
|
$(OBJECTDIR)ReadXoption.o \
|
|
$(OBJECTDIR)XReconfig.o \
|
|
$(OBJECTDIR)XScroll.o \
|
|
$(OBJECTDIR)Scrollbar.o \
|
|
$(OBJECTDIR)XCursor.o \
|
|
$(OBJECTDIR)XMouse.o \
|
|
$(OBJECTDIR)Subwindows.o \
|
|
$(OBJECTDIR)VideoColor.o \
|
|
$(OBJECTDIR)XWindowMgr.o
|
|
|
|
|
|
XVERSION = XV11R4
|
|
XFLAGS = -DXWINDOW -D$(XVERSION)
|
|
|
|
FPFLAGS =
|
|
DFLAGS = -DFSERROR -DAIX -DSYSVONLY -DSYSVSIGNALS -DNOASM -DLOGINT -DNOPIXRECT $(XFLAGS) -DBYTESWAP -DAIXPS2 -DFLTINT -D_I386 -DNOETHER -DFORKCOMM
|
|
LDFLAGS = -lX11 -lc -lm -lbsd
|
|
|
|
INLINE =
|
|
BITBLTFILE =
|
|
# for the files that need to be included in byte-swapped implementations:
|
|
BYTESWAPFILES = $(OBJECTDIR)byteswapfns$(OEXT)
|
|
|
|
# This is to make the %$#@! Apollo cc happy
|
|
OEXT = .o
|
|
|
|
OPTFLAGS = -O -fstrength-reduce -fcombine-regs
|
|
DISPOPTFLAGS = -O -fstrength-reduce -fcombine-regs -finline-functions
|
|
CC = /gcc/gcc
|
|
|
|
OBJECTDIR = ../$(RELEASENAME)/
|
|
|
|
default : ../$(OSARCHNAME)/lde ../$(OSARCHNAME)/ldeether
|
|
|
|
|
|
$(OBJECTDIR)xc.o : $(SRCDIR)xc.c $(INCDIR)lispemul.h $(INCDIR)emulglobal.h \
|
|
$(INCDIR)address.h \
|
|
$(INCDIR)address68k.h $(INCDIR)stack.h $(INCDIR)lispglobal.h \
|
|
$(INCDIR)lisptypes.h $(INCDIR)lispmap.h $(INCDIR)cell.h \
|
|
$(INCDIR)initatoms.h $(INCDIR)gcdata.h \
|
|
$(INCDIR)arith.h $(INCDIR)stream.h $(INCDIR)dbprint.h\
|
|
$(INCDIR)tos1defs.h $(INCDIR)tosretmacro.h \
|
|
$(INCDIR)tosfuncall.h $(INCDIR)inlineC.h \
|
|
$(INCDIR)profile.h
|
|
$(CC) $(DISPRFLAGS) $(SRCDIR)xc.c $(INLINE) -o $(OBJECTDIR)xc.o
|
|
|
|
|