X-Git-Url: https://git.llucax.com/software/posixx.git/blobdiff_plain/21c52612c160be6cc767ac3a5ffb5243e2f66da1..a2ee6d5ec3df0dfe487940c8fe88e9ba11fc1c64:/Makefile diff --git a/Makefile b/Makefile index 8433701..a4c08fe 100644 --- a/Makefile +++ b/Makefile @@ -7,22 +7,27 @@ prefix=/usr/local default: all -all: doc test memtest +all: install: - $(MAKE) -C src $@ + $(MAKE) -C src install doc: - $(MAKE) -C doc $@ + $(MAKE) -C doc -test memtest: - $(MAKE) -C test $@ +test: + $(MAKE) -C test test + +memtest: + $(MAKE) -C test memtest + +commit-check: doc test memtest clean: - $(MAKE) -C src $@ - $(MAKE) -C doc $@ - $(MAKE) -C test $@ + $(MAKE) -C src clean + $(MAKE) -C doc clean + $(MAKE) -C test clean -.PHONY: default all install doc test memtest clean +.PHONY: default all install doc test memtest commit-check clean