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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#! /usr/bin/make -f
#######################################################
## rules ---
## Author : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com )
## Created On : Fri Nov 14 12:33:34 2003
## Created On Node : glaurung.green-gryphon.com
## Last Modified By : Manoj Srivastava
## Last Modified On : Tue Nov 18 17:46:22 2003
## Last Machine Used: glaurung.green-gryphon.com
## Update Count : 70
## Status : Unknown, Use with caution!
## HISTORY :
## Description :
##
## arch-tag: 9a5063f4-1e20-4fff-b22a-de94c1e3d954
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
###############################################################################
# Include dpkg-architecture generated variables
include debian/common/archvars.mk
# Set variables with information extracted from control and changelog files
include debian/common/pkgvars.mk
# variables useful for perl packages
include debian/common/perlvars.mk
# Install commands
include debian/common/install_cmds.mk
include debian/local-vars.mk
include debian/common/copt.mk
include debian/common/automake.mk
all:
@echo nothing to be done
include debian/common/targets.mk
include debian/local.mk
#Local variables:
#mode: makefile
#coding: utf-8
#compile-command: "cd .. && gbp buildpackage -uc -us"
#End:
|