forked from Imagelibrary/rtems
* aclocal/check-cxx.m4: Add AC_SUBST(CPLUS_LD_LIBS) * aclocal/prog-cc.m4: Cleanup comments, require RTEMS_ENABLE_GCC28, add automake conditionals RTEMS_USE_GCC, RTEMS_USE_GCC272. * automake/compile.am: Replaced. * automake/local.am: Remove building variant handling.
39 lines
688 B
Plaintext
39 lines
688 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: depend-am
|
|
.PHONY: depend depend-am
|
|
|
|
${ARCH}:
|
|
mkdir ${ARCH}
|
|
|
|
clean-local:
|
|
$(RM) -r o-optimize o-debug o-profile $(CLEANDIRS)
|
|
$(RM) Depends-o-optimize.tmp Depends-o-debug.tmp Depends-o-profile.tmp
|
|
|
|
distclean-local:
|
|
$(RM) Depends-o-optimize Depends-o-debug Depends-o-profile
|
|
|
|
PROJECT_TOOLS = $(PROJECT_RELEASE)/build-tools
|
|
|