mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 04:24:45 +00:00
* automake/compile.am: Introduce depend-gcc. * automake/lib.am: Remove stray comment. * automake/local.am: Introduce depend-gcc.
29 lines
469 B
Plaintext
29 lines
469 B
Plaintext
## $Id$
|
|
|
|
debug:
|
|
@echo
|
|
@echo "\"make debug\" is obsolete, instead use:"
|
|
@echo " make VARIANT=DEBUG"
|
|
@echo
|
|
|
|
.PHONY: debug
|
|
|
|
profile:
|
|
@echo
|
|
@echo "\"make profile\" is obsolete, instead use:"
|
|
@echo " make VARIANT=PROFILE"
|
|
@echo
|
|
|
|
.PHONY: profile
|
|
|
|
preinstall-am: $(PREINSTALL_FILES)
|
|
preinstall: preinstall-am
|
|
.PHONY: preinstall preinstall-am
|
|
|
|
depend-am: depend-gcc
|
|
depend: depend-am
|
|
.PHONY: depend depend-am depend-gcc
|
|
|
|
PROJECT_TOOLS = $(PROJECT_RELEASE)/build-tools
|
|
|