add ubuntu package to INSTALL
[snark14.git] / examples / Makefile
1 .PHONY: all run test output clean
2
3 all: run
4         @echo "Useful make targets: run, test, output"
5
6 .have_run:
7         @./run_all
8         @touch .have_run
9
10 run: .have_run
11
12 test: .have_run
13         @./regression
14
15 output: .have_run
16         @less */b[0-9].out */b[0-9][0-9].out
17
18 clean:
19         @rm -f */b[0-9][0-9].out */b1[0-9].out */file11 */prjfil */recfil */eval */src/.o */punch b*/src/*.o */MAPUser1  */snark.lock b*/bin/*
20         @rm -f */RPRTsuperiorization */RPRTklds b9/snark_e.in b9/snark_e.out b9/testem.1 b9/fomfil.1
21         @rm -f .have_run
22