Commit 94ca510b authored by Andrew Price's avatar Andrew Price
Browse files

Replace 'cleanall' make target with 'clean'

parent 9feb8a89
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ test' you will need to make sure your previously running mwserv process has
been killed before testing again.

To remove all of the built files in the src directory and below you can run
'make cleanall' in the src directory. This will leave your mwtest directory in
'make clean' in the src directory. This will leave your mwtest directory in
place. To remove that too, run 'make testclean'.

As a rule, the code that lives in the src directory is meant to be library code
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ endif
endif

clean:
	$(MAKE) -C src cleanall
	$(MAKE) -C src $@
	$(MAKE) -C duktape $@
	$(MAKE) -C po $@

+1 −3
Original line number Diff line number Diff line
@@ -27,13 +27,11 @@ install: all
	install -d $(DESTDIR)$(STATEDIR)

clean:
	-rm -f *.o *.d .*.d nonce-def.h mw mwserv libmw.a

cleanall: clean
	$(MAKE) -C client clean
	$(MAKE) -C server clean
	$(MAKE) -C webclient clean
	$(MAKE) -C utils clean
	-rm -f *.o *.d .*.d nonce-def.h mw mwserv libmw.a

ifndef TESTDIR
test testclean: