#
# Imakefile - xapplaunch
#

#
# Xpm support
# Comment the following out if you do not have Xpm.
# You can get xpm anonymous ftp from ftp.x.org
#
      DEFINEXPM = -DHAVE_XPM
            XPM = -DXPM
         LIBXPM = -lXpm

#
# If you have do not have motif, use the Athena (Xaw) widgets
#

# Motif
       DEPLIBS = XmClientDepLibs
  MOTIFDEFINES = -DHAVE_MOTIF
# Athena
#       DEPLIBS = XawClientDepLibs

# Add -DNO_CPP_SUPPORT to DEFINES if your machine does not have cpp
# If your machine has cpp someplace other than /lib/cpp, then defined it so.
        DEFINES = '-DCPP="/lib/cpp"' $(DEFINEXPM) $(MOTIFDEFINES)

#
# You should not need to change anything past this
#
LOCAL_LIBRARIES = $(LIBXPM) $(DEPLIBS)
       LINTLIBS = $(DEPLIBS)
  SYS_LIBRARIES =
           SRCS = xapplaunch.c
           OBJS = xapplaunch.o

ComplexProgramTarget(xapplaunch)
InstallAppDefaults(Xapplaunch)

