mirror of
https://github.com/wfjm/w11.git
synced 2026-01-13 15:37:43 +00:00
- C++ and Tcl based backend server: many support classes for interfacing to w11 system designs, and the associated Tcl bindings. - add 'asm-11', a simple, Macro-11 syntax subset combatible, assembler. - use now doxygen 1.8.3.1, generate c++,tcl, and vhdl source docs
22 lines
564 B
Makefile
22 lines
564 B
Makefile
# $Id: dontincdep.mk 477 2013-01-27 14:07:10Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2013-01-27 477 1.0 Initial version
|
|
#
|
|
# DONTINCDEP controls whether dependency files are included. Set it if
|
|
# any of the 'clean' type targets is involved
|
|
#
|
|
ifneq ($(findstring clean, $(MAKECMDGOALS)),)
|
|
DONTINCDEP = 1
|
|
endif
|
|
ifneq ($(findstring cleandep, $(MAKECMDGOALS)),)
|
|
DONTINCDEP = 1
|
|
endif
|
|
ifneq ($(findstring distclean, $(MAKECMDGOALS)),)
|
|
DONTINCDEP = 1
|
|
endif
|
|
ifdef DONTINCDEP
|
|
$(info DONTINCDEP set, *.dep files not included)
|
|
endif
|