conterm/Make.unix

19 lines
388 B
Plaintext
Raw Normal View History

# Unix
AR=ar
2005-11-04 19:05:20 +03:00
AS=as
2005-11-07 20:13:41 +03:00
CC=gcc -Wall -Wno-missing-braces
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
2005-11-04 18:47:45 +03:00
all: default
2005-11-02 18:20:27 +03:00
libmachdep.a:
arch=`uname -m|sed 's/i.86/386/;s/Power Macintosh/power/'`; \
(cd posix-$$arch && make)