File: help

package info (click to toggle)
mixxx 1.4.2-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,676 kB
  • ctags: 4,130
  • sloc: ansic: 35,627; cpp: 27,118; xml: 3,691; sh: 417; makefile: 54
file content (43 lines) | stat: -rw-r--r-- 1,740 bytes parent folder | download | duplicates (2)
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
-----------------------------------------------------------
Qmake Building Automation System (QBASystem) version 0.9.7
Copyright (c) 2003-2004 Gianluca Romanin (aka J_Zar)
-----------------------------------------------------------
Usage:  ./configure  option1="value1;value2..." ...

Generic options:

  -h, --h, --help		stamp this message
  --includelib		adds libraries
  --dependency-dir	adds paths for dependency checking (max allowed = 5)
  --prefix		define the install directory prefix
  --disable-warnings	switch to "warn_off" mode
  --cflags		overwrite default cflags with user defined
  --cxxflags		overwrite default cxxflags with user defined
  --lflags		overwrite default lflags with user defined
  --static-link		define if link should be static. You can define a
			PATH that should be tryed ( before defaults ) in this 
			way: --static-link=PATH
			User has no warranty on the static result: on failure,
			shared link will be tryed!
  --enable-debug	enable debug mode
  --enable-FEATURE	enable FEATURE 
  --disable-FEATURE	disable FEATURE
  --with-PACKAGE	set custom directory for PACKAGE (higher 
			priority than --static-linking-path!)

Examples:

  $ ./configure     --dependency-dir="/usr/share/libx;/home/liby"
  adds two paths to check dependencies: /usr/share/libx  and /home/liby.

  $ ./configure     --cflags="-march=i686;-mcpu=pentium3"
  adds -march=i686 and -mcpu=pentium3 as cflags to the Makefile.

  $ ./configure     --prefix="/home/user/program"
  it will be used /home/user/program as prefix.

  $ ./configure     --includelib="/home/user/libx.so;/home/user/liby.a"
  adds two libs to be linked: /home/user/libx.so and /home/user/liby.a.

  $ ./configure     --enable-feat1
  enable feat1 to be compiled.