diff options
| author | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-07 13:10:51 +0000 |
|---|---|---|
| committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-11-07 13:10:51 +0000 |
| commit | dbf585ec3763e25db5c34338cbf34af9035fe40f (patch) | |
| tree | d840d0c834005e320f5d9b031e6993d3145289fd /examples/Makefile | |
| parent | fc4f132415391c0b5dd52072ce7e25473e06e3a9 (diff) | |
| download | LibXtract-dbf585ec3763e25db5c34338cbf34af9035fe40f.tar.gz LibXtract-dbf585ec3763e25db5c34338cbf34af9035fe40f.tar.bz2 LibXtract-dbf585ec3763e25db5c34338cbf34af9035fe40f.zip | |
Add "install" target
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/examples/Makefile b/examples/Makefile index 46ef826..94ae71d 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,8 +1,14 @@ -.PHONY: simpletest clean +NAME = simpletest -simpletest: +.PHONY: $(NAME) clean + +$(NAME): @$(MAKE) -C $@ +install: + @$(MAKE) -C $(NAME) install + + clean: - @$(MAKE) -C simpletest clean + @$(MAKE) -C $(NAME) clean |