50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
Makefile
#
|
|
# NORM mklinux Makefile
|
|
#
|
|
|
|
|
|
# 5) System specific additional libraries, include paths, etc
|
|
# (Where to find X11 libraries, etc)
|
|
#
|
|
SYSTEM_INCLUDES = -I/usr/X11R6/include
|
|
|
|
SYSTEM_LDFLAGS = -L/usr/X11R6/lib
|
|
SYSTEM_LIBS = -ldl
|
|
|
|
# 6) System specific capabilities
|
|
# Must choose appropriate for the following:
|
|
#
|
|
# A) -DHAVE_CUSERID (preferred) or -DHAVE_GETLOGIN for cuserid() or getlogin()
|
|
# functions to obtain user's login name (We may change this to getpwd()
|
|
# if that is better across different platforms and login environments)
|
|
#
|
|
# B) -DHAVE_LOCKF (preferred) or -D_LOCKF for lockf() or flock() file locking
|
|
# functions to attempt exclusive lock on writing to files
|
|
#
|
|
# C) Specify -DHAVE_DIRFD if you system provides the "dirfd()" function
|
|
# (Most don't have it defined ... but some do)
|
|
#
|
|
# D) Optionally specify -DHAVE_ASSERT if your system has a built-in ASSERT()
|
|
# routine.
|
|
#
|
|
# F) Some systems (SOLARIS/SUNOS) have a few gotchas which require
|
|
# some #ifdefs to avoid compiler warnings ... so you might need
|
|
# to specify -DSOLARIS or -DSUNOS depending on your OS.
|
|
#
|
|
# G) Uncomment this if you have the NRL IPv6+IPsec software
|
|
#DNETSEC = -DNETSEC -I/usr/inet6/include
|
|
#
|
|
# (We export these for other Makefiles as needed)
|
|
#
|
|
|
|
export SYSTEM_HAVES = -DHAVE_CUSERID -DHAVE_LOCKF -DHAVE_DIRFD $(NETSEC)
|
|
|
|
export CC = gcc
|
|
export SYSTEM_CFLAGS = -fPIC -Wall -pedantic -Wcast-align
|
|
export SYSTEM_SOFLAGS = -shared
|
|
export RANLIB = ranlib
|
|
export AR = ar
|
|
|
|
include Makefile.common
|
|
|