equal
deleted
inserted
replaced
11 # You can override such variables in Makefile.config: |
11 # You can override such variables in Makefile.config: |
12 # |
12 # |
13 # SF_USER SourceForge user name. |
13 # SF_USER SourceForge user name. |
14 # prefix Prefix to install path. |
14 # prefix Prefix to install path. |
15 # DESTDIR Prefix to 'prefix' variable value. |
15 # DESTDIR Prefix to 'prefix' variable value. |
|
16 |
|
17 ################################################################ |
|
18 # Standard GNU Makefile settings. |
16 |
19 |
17 SHELL = /bin/sh |
20 SHELL = /bin/sh |
18 export PATH := /bin:/usr/bin:${PATH} |
21 export PATH := /bin:/usr/bin:${PATH} |
19 |
22 |
20 # Disable built in pattern rules. |
23 # Disable built in pattern rules. |
21 MAKEFLAGS += -r |
24 MAKEFLAGS += -r |
22 # Disable built in variables. |
25 # Disable built in variables. |
23 MAKEFLAGS += -R |
26 MAKEFLAGS += -R |
24 # Disable built in suffix rules. |
27 # Disable built in suffix rules. |
25 .SUFFIXES: |
28 .SUFFIXES: |
|
29 # Delete target file if command fails. |
|
30 .DELETE_ON_ERROR: |
26 # Default target. |
31 # Default target. |
27 .DEFAULT_GOAL = help |
32 .DEFAULT_GOAL = help |
28 |
33 |
29 ################################################################ |
34 ################################################################ |
30 # Build script definitions. |
35 # Build script definitions. |