/* ************************************************************************* *
   xfsm - (C) Copyright 1993 Robert Gasch (rgasch@nl.oracle.com)

   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.

   All commercial uses of xfsm must be done by agreement with the autor.
 * ************************************************************************* */



# 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		= -O -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 


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)

