1# Makefile for directory CoCoALib/include/CoCoA/.
2
3COCOA_ROOT=../..
4include $(COCOA_ROOT)/configuration/autoconf.mk
5CWD=include/CoCoA/
6
7# Default is to rebuild the unified header (in library.H)
8.PHONY: default
9default:
10	./MakeUnifiedHeader.sh --check
11
12
13.PHONY: clean clean-local
14clean: clean-local
15	echo "Cleaned CoCoALib/$(CWD)"
16
17clean-local:
18	/bin/rm -f  .mutex  ./*~  ./.*~  ./.\#*   PREPROCESSOR_DEFNS.H-old  library.H.old
19
20.PHONY: veryclean veryclean-local
21veryclean: veryclean-local
22	echo "Verycleaned CoCoALib/$(CWD)"
23
24veryclean-local: clean-local
25	/bin/rm -f  library.H  PREPROCESSOR_DEFNS.H
26