source: vanHelsing/trunk/Makefile

Last change on this file was 810, checked in by hmueller, on Jan 8, 2010 at 11:02:22 AM

bacula_repo removed

  • Property svn:executable set to *
  • Property svn:mime-type set to text/plain
File size: 616 bytes
Line 
1#!/bin/sh
2SHELL = /bin/sh
3PYTHON = /usr/bin/python
4DOXYGEN=/usr/bin/doxygen
5VERSION=0.1
6
7prefix = $(HOME)/tmp
8docdir = $(prefix)/share/doc
9
10EXTERNALS = bacula
11
12all: bacula
13
14# cleanup old perl classes
15.PHONY: clean
16clean:
17 rm -rf build/*
18 rm bacula
19
20
21## bacula library wrapper
22clib:
23 python setup.py --prefix ./build
24
25## make bacula_client libraries
26.PHONY: bacula
27bacula:
28 cd ./bacula_repo ; \
29 ./configure \
30 --enable-client-only \
31 --prefix=$(PWD)/build \
32 ; \
33 make ; \
34 make install
35 touch bacula
36
37clean_bacula:
38 cd ./bacula_repo ; \
39 make clean
40
41## remove generated sources
42cleaner: clean clean_bacula
Note: See TracBrowser for help on using the repository browser.