mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
This flag was for SunOS 3 and 4 on sun3 hardware (68k). It enabled some unsafe optimizations via assembler. This hasn't actually been built since the DOS port (since the header for this was renamed, but the code in `xc.c` wasn't updated). The optimizations here made assumptions that were specific to the 68k hardware and register allocation. They aren't likely to be of much use moving forward, and we've got plenty of safe performance improvements from the last 30 years of hardware advances.
58 lines
1.7 KiB
Plaintext
58 lines
1.7 KiB
Plaintext
# Options for sun3, mc68020 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
|
|
|
|
XFLAGS = -DXWINDOW
|
|
|
|
# This is to make the %$#@! Apollo cc happy
|
|
OEXT = .o
|
|
|
|
OPTFLAGS = -O2
|
|
DISPOPTFLAGS = -O
|
|
FPFLAGS = -f68881
|
|
DFLAGS = -DNEW_STORAGE -DOPDISP -DSUN3_OS3_IL -DNEWBITBLT -DLOGINT $(XFLAGS) -DFORKCOMM -DBIGATOMS
|
|
LDFLAGS = -lX11 -lpixrect -lc -lm
|
|
INLINE = $(SRCDIR)disp68K.il
|
|
BITBLTFILE = $(OBJECTDIR)bitblt68K.o
|
|
|
|
OBJECTDIR = ../sunos3.mc68020-x/
|
|
BYTESWAPFILES = $(OBJECTDIR)byteswap.o
|
|
|
|
default : $(OBJECTDIR)lde $(OBJECTDIR)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)tos1defs.h $(INCDIR)tosretmacro.h \
|
|
$(INCDIR)tosfuncall.h $(INCDIR)inlineC.h \
|
|
$(INCDIR)inline68K.h \
|
|
$(INCDIR)inlineSPARC.h $(INCDIR)fast_disp.h \
|
|
$(INCDIR)fastinline68K.h $(INCDIR)profile.h
|
|
cc $(DISPRFLAGS) $(SRCDIR)xc.c $(INLINE) -o $(OBJECTDIR)xc.o
|