#
# Makefile for NEdit text editor
#
# targets: sgi_nedit, hp_nedit, ultrix_nedit, ibm_nedit, sunos_nedit,
#	   solaris_nedit, dec_nedit, linux_nedit
#
# Builds an intermediate library in util directory, then builds
# the nedit executable in the source directory
#

all apollo_nedit:
	(cd util; $(MAKE) -f Makefile.apollo libNUtil.a)
	(cd source; $(MAKE) -f Makefile.apollo nedit nc)

install: all
	(cd source; $(MAKE) -f Makefile.apollo install)

clean:
	rm util/*.[oa] source/*.o
