#ifndef XCOMM
#define XCOMM #
#endif
CC = cc
CCOPTIONS =-Ae -D_HPUX_SOURCE -DSYSV


XCOMM Define the Motif stuff
XCOMM ------------------------------------------------------------------------
XMPATH = -L/usr/lib/Motif1.2
XMLIB = $(XMPATH) -lXm
INCLUDES = -I/usr/include/Motif1.2


XCOMM Define the Libraries
XCOMM ------------------------------------------------------------------------
XMULIB=/usr/lib/X11R5/libXmu.a
SYS_LIBRARIES= $(XMLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)
LOCAL_LIBRARIES = -lm

XCOMM Define the source files
XCOMM ------------------------------------------------------------------------

DEPS1 = 
SRCS1 = changeicon.c   dialog2.c   dialogcur.c   xgrabwin.c   xwmdialog.c
OBJS1 = changeicon.o   dialog2.o   dialogcur.o   xgrabwin.o   xwmdialog.o


XCOMM The first target is usually a make all rule
XCOMM--------------------------------------------------------------------------
AllTarget(xwmdialog) 


XCOMM Make all is up to date only if all the other targets (below) are.
XCOMM--------------------------------------------------------------------------
NormalProgramTarget(xwmdialog,$(OBJS1),$(DEPS1),$(SYS_LIBRARIES),$(LOCAL_LIBRARIES))


XCOMM Put your install rules (for binaries, headers, man pages, etc) here.
XCOMM--------------------------------------------------------------------------
InstallProgram(xwmdialog,$(BINDIR))
XCOMM InstallManPage(xwmdialog,$(MANDIR))
XCOMM InstallAppDefaults(Xwmdialog)
