source: vanHelsing/trunk/Makefile@ 772

Last change on this file since 772 was 772, checked in by hmueller, on Jul 1, 2009 at 5:15:41 PM
  • Property svn:executable set to *
  • Property svn:mime-type set to text/plain
File size: 544 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## make bacula_client libraries
21.PHONY: bacula
22bacula:
23 cd ./bacula_repo ; \
24 ./configure \
25 --enable-client-only \
26 --prefix=$(PWD)/build \
27 ; \
28 make ; \
29 make install
30 touch bacula
31
32clean_bacula:
33 cd ./bacula_repo ; \
34 make clean
35
36## remove generated sources
37cleaner: clean clean_bacula
Note: See TracBrowser for help on using the repository browser.