mirror of https://github.com/0intro/conterm
24 lines
485 B
Plaintext
24 lines
485 B
Plaintext
# Unix
|
|
#PTHREAD= # for Mac
|
|
PTHREAD=-pthread
|
|
AR=ar
|
|
AS=as
|
|
RANLIB=ranlib
|
|
X11=/usr/X11R6
|
|
CC=gcc
|
|
CFLAGS=-Wall -Wno-missing-braces -ggdb -I$(ROOT) -I$(ROOT)/include -I$(ROOT)/kern -c -I$(X11)/include -D_THREAD_SAFE $(PTHREAD) -O2
|
|
O=o
|
|
OS=posix
|
|
GUI=x11
|
|
LDADD=-L$(X11)/lib64 -L$(X11)/lib -lX11 -ggdb
|
|
LDFLAGS=$(PTHREAD)
|
|
TARG=drawterm
|
|
# AUDIO=none
|
|
AUDIO=unix
|
|
|
|
all: default
|
|
|
|
libmachdep.a:
|
|
arch=`uname -m|sed 's/i.86/386/;s/Power Macintosh/power/; s/x86_64/amd64/'`; \
|
|
(cd posix-$$arch && make)
|