#
# Stealth V1.0
#

OFILES = stealth.o 

LDFLAGS= 

#
# Currently only unix supported, define UNIX for a unix machine, USE_TMP
# to create temporary files in /tmp, and USE_PGPPATH to create them in
# the directory pointed to by the PGPPATH environment variable. Otherwise
# the will be created in the current directory.
#

CPPFLAGS=-DUNIX -DUSE_PGPPATH
CFLAGS=-O 

#
# On a machine using gcc, uncomment the CC=gcc line (i.e. remove the #),
# and put a # before the CC=cc line, or take it out altogether.
#

#CC=gcc
CC=cc

stealth:	$(OFILES)
	$(CC) $(CFLAGS) $(OFILES) -o stealth $(LDFLAGS)

.c.o:	
	$(CC) -c $< -o $@ $(CPPFLAGS) $(CFLAGS)


