mirror of https://github.com/0intro/conterm
22 lines
377 B
Plaintext
22 lines
377 B
Plaintext
|
# Sun-specific
|
||
|
PTHREAD=
|
||
|
AR=ar
|
||
|
AS=as
|
||
|
RANLIB=ranlib
|
||
|
X11=/usr/X11R6
|
||
|
CC=cc
|
||
|
CFLAGS=-xCC -I$(ROOT) -I$(ROOT)/include -I$(ROOT)/kern -c -g -D_THREAD_SAFE
|
||
|
O=o
|
||
|
OS=posix
|
||
|
GUI=x11
|
||
|
LDADD=-L$(X11)/lib -lX11 -lrt -lpthread -lsocket -lnsl
|
||
|
LDFLAGS=
|
||
|
TARG=drawterm
|
||
|
AUDIO=none
|
||
|
|
||
|
all: default
|
||
|
|
||
|
libmachdep.a:
|
||
|
arch=`uname -m|sed 's/i.86/386/;s/Power Macintosh/power/'`; \
|
||
|
(cd posix-$$arch && make)
|