summary refs log tree commit diff
path: root/src/Makefile
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-27 18:05:27 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-27 18:05:27 -0400
commite38c61d95fccd208e13dd14a31a567c3d431677a (patch)
tree4b0b72c5fa5cb7fda48f67f3abcfeaf9e92d9023 /src/Makefile
parentc46e1ba7b564ecdced28889258051e35b5df228f (diff)
downloadroux-e38c61d95fccd208e13dd14a31a567c3d431677a.tar.gz
add centralized all and clean targets
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index e1c5c4a..8fdf29f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -15,10 +15,12 @@ config.h:
 	esac > $@
 
 
-.PHONY: clean check syndoc
+all: $(BIN)
 clean:
 	rm -f $(BIN) $(OBJ)
 check:
 	make -C .. check
 syndoc:
 	unison -auto doc ssh://qcar@h/data/d/ssa-doc
+
+.PHONY: all clean check syndoc