shithub: drawterm-fdroid

ref: ab73f2bbf59c2cdccc21952d9a13466793262b4b
dir: /Make.unix/

View raw version
# Unix
AR=ar
CC=gcc
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

# for root
libmachdep.a:
	arch=`uname -m|sed 's/i.86/386/;s/Power Macintosh/power/'`; \
	(cd posix-$$arch &&  make)