/* * Sample Imakefile for xhtml * * Use the Following Commands to create the Makefile and build the * program * * Step 1) xmkmf * Step 2) make depend * Step 3) make all * * Step 1 needs to be done every time you change platforms you are working * on, or change the Imakefile * * Step 2 needs to be done every time you do step 1, or every time you * change any of the source or header files involved * * Step 3 results in the desired binary if all is well. * */ /* This is a list of programs to build. */ TARGETS = xhtml /* The sources for this Program. */ SRCS = xfile.c \ xheader.c \ xhtml.c \ xmarkup.c \ xstyles.c \ xviewer.c \ xform.c \ xgif.c \ xbitmap.c \ xcci.c \ xurl.c /* The object files that will be generated */ OBJS = $(SRCS:.c=.o) /* * This is the Directory of the HTML Widget Library. (Please change it) * */ LCL_LIB = -L../libhtmlw-2.7b3 \ -L../libcci /* * This is the Directory of the HTML Widget Include Files (Please change it) * */ INCLUDES = -I../libhtmlw-2.7b3 \ -I../libcci # These libraries are necessary for Solaris : # -lsocket -lresolv -L/usr/ucblib -lucb -lnsl EXTRA_LIBRARIES = $(LCL_LIB) -lcci -lhtmlw ${MOTIFLIB} XawClientLibs ComplexProgramTarget(xhtml) InstallAppDefaults(XHTML) InstallNonExecFile(help.html,$(LIBDIR)/xhtml)