source: src/Makefile @ 322

Revision 322, 1.6 KB checked in by anarcat, 7 years ago (diff)

[project @ alternc: changeset 2004-06-01 04:56:27 by anonymous]
déplacer l'installation de rawstat.daily, quota_init et quota_delete
dans le makefile de src/, où il se doit.

Original author: anonymous
Date: 2004-06-01 04:56:28

RevLine 
[6]1#
[322]2# $Id: Makefile,v 1.13 2004/06/01 04:56:28 anonymous Exp $
[6]3# ----------------------------------------------------------------------
4# AlternC - Web Hosting System
5# Copyright (C) 2002 by the AlternC Development Team.
6# http://alternc.org/
7# ----------------------------------------------------------------------
8# Based on:
9# Valentin Lacambre's web hosting softwares: http://altern.org/
10# ----------------------------------------------------------------------
11# LICENSE
12#
13# This program is free software; you can redistribute it and/or
14# modify it under the terms of the GNU General Public License (GPL)
15# as published by the Free Software Foundation; either version 2
16# of the License, or (at your option) any later version.
17#
18# This program is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21# GNU General Public License for more details.
22#
23# To read the license please visit http://www.gnu.org/copyleft/gpl.html
24# ----------------------------------------------------------------------
25# Purpose of file: Makefile des binaires de /usr/lib/alternc
26# ----------------------------------------------------------------------
27#
[214]28CC?=cc
29CC+=$(CFLAGS)
30PROGS=mail_add mail_del quota_edit quota_get mem_add mem_del db_create
[322]31SCRIPTS=quota_edit.sh quota_get.sh basedir_prot.sh sqlbackup.sh rawstat.daily quota_init quota_delete
[215]32BIN=$(DESTDIR)/usr/lib/alternc/
[6]33
[214]34all: $(PROGS)
[6]35
[319]36
[6]37install: all
[215]38        install -o root -g root -m4550 $(PROGS) du.pl $(BIN)
[318]39        install -o root -g root -m0550 $(SCRIPTS) $(BIN)
[6]40
41clean:
[214]42        -rm -f *.o *~
43        -rm -f $(PROGS)
Note: See TracBrowser for help on using the repository browser.