mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
* Add makefiles for FreeBSD amd64 and aarch64 * Add appropriate comments in new makefiles * Add makefile-init files for the new FreeBSD archs
28 lines
619 B
Plaintext
28 lines
619 B
Plaintext
# Options for FreeBSD, Intel x86_64 and X-Windows
|
|
|
|
CC = clang -m64 $(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 -DLOCK_X_UPDATES
|
|
|
|
# OPTFLAGS is normally -O2.
|
|
OPTFLAGS = -O2 -g
|
|
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
|