DEFINES = -DHELPFILE=\"$(DESTDIR)${LIBDIR}/xed/xed.help\" XCOMM Please check for some aditional DEFINES XCOMM -DSCROLLBREAK -DUSEGETCWD -DNORENAME -DUSEDIRENT -DUSE_CSH_SYSTEM DEPLIBS = XawClientDepLibs LOCAL_LIBRARIES = XawClientLibs SYS_LIBRARIES = -lm SRCS = xedit.c jump.c edit.c file.c warning.c search.c file_sel.c special.c commands.c OBJS = xedit.o jump.o edit.o file.o warning.o search.o file_sel.o special.o commands.o ComplexProgramTarget(xed) clean:: $(RM) xed.help Xed.ad all:: @echo "If you are running an X11 Release older than X11R6 please" @echo "install old version of Application defaults for xed by" @echo "typing:" @echo " make old" @echo "" @echo "before make install" old: cp XedoldX.ad Xed.ad Xed.ad: cp XednewX.ad Xed.ad xed.help: helpfile $(RM) $@ cat helpfile | sed "s@@$(DESTDIR)$(LIBDIR)/xed/xed.commands@g" | \ sed "s@@$(DESTDIR)$(XAPPLOADDIR)/Xed@g" > xed.help InstallNonExecFile(xed.help,$(LIBDIR)/xed) InstallAppDefaults(Xed) install:: @echo "You may want to edit the installed application default file." @echo "Changes will effect any user. So you should only change things" @echo "useful for any user. For example if you want the key" @echo "to delete the next character (not the previous, which is the MIT" @echo "default), you have to change the keybindings in the application" @echo "default file (note you have to change it two times for insert" @echo "and overwrite mode):" @echo " " @echo " Delete: delete-previous-character()" @echo " Delete: delete-next-character()"