|
1
|
# Copyright (c) 2012 WorkWare Systems http://www.workware.net.au/ |
|
2
|
# All rights reserved |
|
3
|
|
|
4
|
# Auto-load module for 'make' build system integration |
|
5
|
|
|
6
|
use init |
|
7
|
|
|
8
|
autosetup_add_init_type make {Simple "make" build system} { |
|
9
|
autosetup_check_create auto.def \ |
|
10
|
{# Initial auto.def created by 'autosetup --init=make' |
|
11
|
|
|
12
|
use cc |
|
13
|
|
|
14
|
# Add any user options here |
|
15
|
options { |
|
16
|
} |
|
17
|
|
|
18
|
make-config-header config.h |
|
19
|
make-template Makefile.in |
|
20
|
} |
|
21
|
|
|
22
|
if {![file exists Makefile.in]} { |
|
23
|
puts "Note: I don't see Makefile.in. You will probably need to create one." |
|
24
|
} |
|
25
|
} |
|
26
|
|