comparison mk/objective.mk @ 1693:8d7f4260022d trunk

[svn] * One more .cpp -> .cxx * Changed sinclude -> include for OpenBSD make compatibility * Removed check for MAKE_VERSION for OpenBSD make compatibility * Added myself to the credits (ok by nenolod)
author js
date Thu, 14 Sep 2006 13:56:35 -0700
parents aa8bbf970aae
children 3cf80d8a6d8d
comparison
equal deleted inserted replaced
1692:2dd4cf103e1c 1693:8d7f4260022d
102 @if [ -f mk/rules.mk ]; then \ 102 @if [ -f mk/rules.mk ]; then \
103 rm -f mk/rules.mk; \ 103 rm -f mk/rules.mk; \
104 fi 104 fi
105 105
106 build: 106 build:
107 # test for GNU make
108 @if [ ! "$(MAKE_VERSION)" ]; then \
109 echo "[Your make is not properly supported, please use GNU make or BSD make.]"; \
110 exit 1; \
111 fi;
112 $(MAKE) build-prehook 107 $(MAKE) build-prehook
113 @if [ "x$(SUBDIRS)" != "x" ]; then \ 108 @if [ "x$(SUBDIRS)" != "x" ]; then \
114 for i in $(SUBDIRS); do \ 109 for i in $(SUBDIRS); do \
115 if [ $(VERBOSITY) -gt 0 ]; then \ 110 if [ $(VERBOSITY) -gt 0 ]; then \
116 echo "[building subobjective: $$i]"; \ 111 echo "[building subobjective: $$i]"; \