disable stack protection via specs so that anything using this compiler (eg build_wit...
[cake.git] / mmakefile
blob3b7e031d80e5a9dd180cb5c5ece994bc9a089a03
1 # Copyright © 1995-2003, The AROS Development Team. All rights reserved.
2 # $Id$
4 include $(TOP)/config/make.cfg
6 #MM AROS : clean-errors AROS-$(ARCH)-$(CPU) test
7 AROS : checkerr
8         @$(NOP)
10 # Delete the global error file
11 #MM
12 clean-errors :
13         @$(RM) -f $(GENDIR)/errors
14         
15 # Checks if any error has been occurred during compile
16 checkerr :
17         @if [ -f $(GENDIR)/errors ]; then wc -l $(GENDIR)/errors ; else $(NOP) ; fi
19 # Create the file crypt to create a password for CVS access
20 crypt : tools/crypt.c
21         $(CC) -o crypt tools/crypt.c
23 #MM- install : install-$(ARCH)-$(CPU)
25 # Remove all generated dependency files.
26 #MM
27 cleandep :
28         find $(GENDIR) -name "*.d" -exec $(RM) "{}" \;