File: gnumake

package info (click to toggle)
acr 2.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 712 kB
  • sloc: sh: 4,738; makefile: 41
file content (19 lines) | stat: -rw-r--r-- 608 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
GNU make
========

GNU make extends the syntax for the original Makefiles allowing you
to use some interesting expressions.

If you're using gnu makefiles in your project you must specify't
in your configure.acr configuration file by adding this line:

USE_GMAKE

This flag makes configure script fail if no gnu make program is found
on your system. So, you must re-define the MAKE variable on each
Makefile by adding this line at top of each Makefile.acr:

MAKE=@MAKE@

This will make run happy on BSD systems (for example) where 'make'
command is not the GNU one, wrapping the concurrent calls to 'gmake'.