/* ************************************************************************* *
   xfsm - (C) Copyright 1993-1997 Robert Gasch (Robert_Gasch@peoplesoft.com)
	  http://www.peoplesoft.com/peoplepages/g/robert_gasch/index.htm

   Permission to use, copy, modify and distribute this software for any 
   purpose and without fee is hereby granted, provided that this copyright
   notice appear in all copies as well as supporting documentation. All
   work developed as a consequence of the use of this program should duly
   acknowledge such use.

   No representations are made about the suitability of this software for
   any purpose. This software is provided "as is" without express or implied 
   warranty.

   See the GNU General Public Licence for more information.
 * ************************************************************************* */


# basic definitions for the Imake. Call xmkmf to generate the makefile.
# If you do not have xmkmf installed use Makefile.std to make your 
# own custom makefile. 

LOCAL_LIBRARIES = $(XLIB)

# flags for the compiler and linker
# uncomment the DEFINES definition appropriate for your machine
# HP will take care of itself ...
# CCOPTIONS		= -O -DSUNOS 
CCOPTIONS		= -O2 -DLINUX 
# CCOPTIONS		= -O -DSVR4 
# CCOPTIONS		= -O -DAIX 
#ifdef HPArchitecture
CCOPTIONS		= -O -DHPUX -Da -D_HPUX_SOURCE
#endif
# CCOPTIONS		= -O -DOSF1 
# CCOPTIONS		= -O -DDYNIX 
# CCOPTIONS		= -O -DSOLARIS 
# CCOPTIONS		= -O -DULTRIX 
# CCOPTIONS		= -O -DCONVEXOS 
# CCOPTIONS		= -O -DTOS 
# CCOPTIONS		= -O -DSCO 
# CCOPTIONS		= -O -DFreeBSD 
# CCOPTIONS		= -O -DSGI -n32
# CCOPTIONS		= -O -DDGUX


EXTRA_DEFINES                 = -DAPP_DEFAULTS_DIR=\"$(XAPPLOADDIR)/\"


##############################################################################
#!!!!!!!!!!!!!!!!!!!!!!! Do not edit below this point !!!!!!!!!!!!!!!!!!!!!!!#
##############################################################################

OBJS = xfsm.o xfsm_util.o util.o
SRCS = xfsm.c xfsm_utilo util.c

INCLUDES = -I$(TOP) -I$(TOP)/X11

ComplexProgramTarget(xfsm)

archive: 
	makeshar Imakefile Makefile.std Manifest COPYING Copyright README \
xfsm.man xfsm.lsm xfsm.gif xfsm.h xfsm.c xfsm_util.c util.c > xfsm.shar

