mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-14 03:44:36 +00:00
The default targets differ depending on the display type and whether networking is configured in or not, so it's more appropriate in the individual fragments
28 lines
610 B
Plaintext
28 lines
610 B
Plaintext
# Options for FreeBSD, Intel 386/486 and X Windows
|
|
|
|
CC = clang -m32 $(CLANG_CFLAGS)
|
|
|
|
XFILES = $(OBJECTDIR)xmkicon.o \
|
|
$(OBJECTDIR)xbbt.o \
|
|
$(OBJECTDIR)dspif.o \
|
|
$(OBJECTDIR)xinit.o \
|
|
$(OBJECTDIR)xscroll.o \
|
|
$(OBJECTDIR)xcursor.o \
|
|
$(OBJECTDIR)xlspwin.o \
|
|
$(OBJECTDIR)xrdopt.o \
|
|
$(OBJECTDIR)xwinman.o
|
|
|
|
|
|
XFLAGS = -I/usr/local/include -DXWINDOW
|
|
|
|
# OPTFLAGS is normally -O2.
|
|
OPTFLAGS = -O1 -gdwarf-2
|
|
DFLAGS = $(XFLAGS) -DRELEASE=351
|
|
|
|
LDFLAGS = -L/usr/local/lib -lX11 -lc -lm
|
|
LDELDFLAGS = -L/usr/local/lib -lX11 -lc -lm
|
|
|
|
OBJECTDIR = ../$(RELEASENAME)/
|
|
|
|
default : ../$(OSARCHNAME)/lde ../$(OSARCHNAME)/ldex
|