File: Jamfile

package info (click to toggle)
libkarma 0.1.2-11
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 668 kB
  • sloc: ansic: 6,224; sh: 328; makefile: 220; cs: 170
file content (23 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SubDir TOP tools ;

SubDirHdrs $(TOP)/src ;
if $(STATIC) { 
	LinkLibraries chprop riocp playlist_show : libkarma ;
} else {
	LINKFLAGS += -lkarma -L$(TOP)/obj ;
	DEPENDS riocp chprop : libkarma.so ;
}

LINKFLAGS += -ltag_c ;

Main chprop : chprop.c ;
Main playlist_show : playlist_show.c ;

if $(OS) = LINUX {
	Main riocp : riocp.c pathedit.c ;
} else {
	Main riocp : riocp.c pathedit.c ftw.c ;
}

InstallBin $(PREFIX)/bin : chprop ;
InstallBin $(PREFIX)/bin : riocp ;