forked from wdlkmpx/unace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.project
44 lines (34 loc) · 1020 Bytes
/
configure.project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh
# Project name and version
PACKAGE="unace"
VERSION="2.6w"
PACKAGE_URL=''
# Flags that will be used in all makefiles that compile code...
PROJECT_CFLAGS='-Wall -g -O2' # -Wextra -Wno-unused-parameter -Wno-missing-field-initializers
PROJECT_CXXFLAGS="${PROJECT_CFLAGS}"
PROJECT_CPPFLAGS=''
PROJECT_LDFLAGS=''
PROJECT_LXXFLAGS=''
PROJECT_LIBS=''
# Project type, use C to avoid checking for C++ compiler and stuff
# supported values: C, C++ ("" = C++)
PROJECT_TYPE=C
# config.h: custom extra lines
w_config_h_extra_lines=""
# config.mk: custom extra lines
w_config_mk_extra_lines=""
# configure the project using the commands provided
# by `configure` and other scripts and commands/tools
w_main_func()
{
# GCC=yes if gcc has been detected
# if the Makefiles are only compatible with GNU make, use w_require_gnu_make
#w_prefer_gnu_make
# check required headers and exit on error
w_check_headers_required stdio.h
}
# once everything is done, you can fix things, etc
w_finish_func()
{
printf ""
}