1all: 2 @echo trying to use GNU make... 3 @gmake all || echo please install GNUmake 4 5source-only: 6 @gmake source-only 7 8binary-only: 9 @gmake binary-only 10 11distrib: 12 @gmake distrib 13 14man: 15 @gmake man 16 17install: 18 @gmake install 19 20document: 21 @gmake document 22 23deepclean: 24 @gmake deepclean 25 26code-format: 27 @gmake code-format 28 29help: 30 @gmake help 31 32tests: 33 @gmake tests 34 35unit: 36 @gmake unit 37 38unit_clean: 39 @gmake unit_clean 40 41clean: 42 @gmake clean 43