ed

[hare] The standard editor
Log | Files | Refs | README | LICENSE

Makefile (295B)


      1 HARE=hare
      2 HAREFLAGS=
      3 
      4 source=\
      5 	main.ha \
      6 	address.ha \
      7 	buffer.ha \
      8 	command.ha \
      9 	error.ha \
     10 	execute.ha \
     11 	file.ha \
     12 	global.ha \
     13 	history.ha \
     14 	interaction.ha \
     15 	parse.ha \
     16 	print.ha \
     17 	util.ha \
     18 
     19 all: ed
     20 
     21 ed: ${source}
     22 	${HARE} build ${HAREFLAGS} -o $@
     23 
     24 clean:
     25 	rm -f ed
     26 
     27 .PHONY: all clean