More detail for Motif version, and change button labels on help browser to be more...
[nedit.git] / Makefile
blob7379a34395998add5fb627bf37f61132203229e0
1 # $Id: Makefile,v 1.7 2002/06/08 13:56:49 tringali Exp $
2 SHELL=/bin/sh
4 # Makefile for NEdit text editor
6 # Targets are the suffixes of the system-specific makefiles in
7 # the makefiles/ directory.
8 # For example, to build NEdit for Solaris, give the command
10 # make solaris
12 # This builds an intermediate library in the util/ directory,
13 # then builds the nedit and nc executables in the source/ directory.
16 all:
17 @echo "Please specify target:"
18 @echo "(For example, type \"make linux\" for a Linux system.)"
19 @(cd makefiles && ls -C Makefile* | sed -e 's/Makefile.//g')
21 .DEFAULT:
22 @- (cd util; if [ -f ../makefiles/Makefile.$@ -a ! -f ./Makefile.$@ ];\
23 then ln -s ../makefiles/Makefile.$@ .; fi)
24 @- (cd source; if [ -f ../makefiles/Makefile.$@ -a ! -f ./Makefile.$@ ];\
25 then ln -s ../makefiles/Makefile.$@ .; fi)
26 (cd util; $(MAKE) -f Makefile.$@ libNUtil.a)
27 (cd source; $(MAKE) -f Makefile.$@ nedit nc)
29 clean:
30 (cd util; $(MAKE) -f Makefile.common clean)
31 (cd source; $(MAKE) -f Makefile.common clean)
34 # The following is for creating binary packages of NEdit.
36 RELEASE=nedit-5.3
37 BINDIST-FILES=source/nedit source/nc README COPYRIGHT ReleaseNotes doc/nedit.doc doc/nedit.html doc/nedit.man doc/nc.man doc/faq.txt
39 dist-bin: $(RELEASE-FILES)
40 rm -rf $(RELEASE)
41 mkdir -p $(RELEASE)
42 cp $(BINDIST-FILES) $(RELEASE)
43 strip $(RELEASE)/nedit $(RELEASE)/nc
44 chmod 555 $(RELEASE)/nedit $(RELEASE)/nc
45 tar cf $(RELEASE).tar $(RELEASE)
46 compress $(RELEASE).tar
47 mv $(RELEASE).tar.Z $(RELEASE)-`uname -s`-`uname -p`.tar.Z
48 rm -rf $(RELEASE)