# Titan version
VERSION = 3.0.1

CC = cc
CPPFLAGS =
CFLAGS   = -Bstatic
LDFLAGS  =  -dn
LIBS     =   -Bstatic /usr/lib/libc.a -Bstatic /usr/ccs/lib/libtermcap.a -Bstatic /usr/lib/libnsl.a

# default target
all:  noshell noshell-simple

noshell: noshell.o
        $(CC) $(CFLAGS) -o noshell $(LIBS) $(LDFLAGS) noshell.o

noshell-simple: noshell-simple.o
        $(CC) $(CFLAGS) -o noshell-simple $(LIBS) $(LDFLAGS) noshell-simple.o


