mirror of https://github.com/0intro/conterm
19 lines
368 B
Plaintext
19 lines
368 B
Plaintext
# Unix
|
|
AR=ar
|
|
AS=as
|
|
CC=gcc -Wall
|
|
RANLIB=ranlib
|
|
CFLAGS=-I$(ROOT) -I$(ROOT)/include -I$(ROOT)/kern -c -ggdb -D_THREAD_SAFE -pthread # not ready for this yet: -Wall
|
|
O=o
|
|
OS=posix
|
|
GUI=x11
|
|
LDADD=-L/usr/X11R6/lib -lX11 -ggdb
|
|
LDFLAGS=-pthread
|
|
TARG=drawterm
|
|
|
|
all: default
|
|
|
|
libmachdep.a:
|
|
arch=`uname -m|sed 's/i.86/386/;s/Power Macintosh/power/'`; \
|
|
(cd posix-$$arch && make)
|