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
|
# Top level Makefile for desproxy
#
# Copyright (C) 2004 Miguelanxo Otero Salgueiro
#
# This program is free software; you can redistribute it and/or modify
# it under the tems of the GNU General Public License version 2 as
# published by the Free Software Foundation.
SHELL = /bin/sh
prefix = @prefix@
datadir = @datadir@
localedir = $(datadir)/locale
bindir = @prefix@/bin
all:
@cd src \
&& make \
&& cd ..
clean:
@cd src \
&& make clean \
&& cd ..
dist-clean:
@cd src \
&& make dist-clean \
&& cd .. \
&& rm Makefile config.h config.log config.status
install:
@./install-sh $(bindir) $(localedir)
|