Avoid a crash when trying to drag widgets (not text) in non-default visual.
[nedit.git] / Makefile
blob33a0cb4ed937dac632d037663a0d516fe50bc972
1 # $Id: Makefile,v 1.11 2003/05/20 00:27:55 n8gray 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; \
27 $(MAKE) -f Makefile.$@ verify_config; \
28 $(MAKE) -f Makefile.$@ libNUtil.a)
29 (cd source; $(MAKE) -f Makefile.$@ nedit nc)
31 # This should not be in the default build, as users may not have Perl
32 # installed. This is only interesting to developers.
33 docs:
34 (cd doc; $(MAKE) all)
36 # We need a "dev-all" target that builds the docs plus binaries, but
37 # that doesn't work since we require the user to specify the target. More
38 # thought is needed
40 clean:
41 (cd util; $(MAKE) -f Makefile.common clean)
42 (cd source; $(MAKE) -f Makefile.common clean)
44 realclean: clean
45 (cd doc; $(MAKE) clean)
48 # The following is for creating binary packages of NEdit.
50 RELEASE=nedit-5.4DEV-`uname -s`-`uname -p`
51 BINDIST-FILES=source/nedit source/nc README COPYRIGHT ReleaseNotes doc/nedit.doc doc/nedit.html doc/nedit.man doc/nc.man doc/faq.txt
53 dist-bin: $(BINDIST-FILES)
54 rm -rf $(RELEASE)
55 mkdir -p $(RELEASE)
56 cp $(BINDIST-FILES) $(RELEASE)/
57 strip $(RELEASE)/nedit $(RELEASE)/nc
58 chmod 555 $(RELEASE)/nedit $(RELEASE)/nc
59 tar cf $(RELEASE).tar $(RELEASE)
60 compress -c $(RELEASE).tar > $(RELEASE).tar.Z
61 -gzip -9 -c $(RELEASE).tar > $(RELEASE).tar.gz
62 -bzip2 -9 -c $(RELEASE).tar > $(RELEASE).tar.bz2
63 rm -rf $(RELEASE) $(RELEASE).tar