|
Revision 75, 0.6 kB
(checked in by tibob, 6 years ago)
|
|
- pid configurable through command line [RC, looking at Loic Tortay's patch for pid configurable through configfile]
- various minor fixes [LT, RC]
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # Common definitions for all the Makefile's |
|---|
| 3 | # Copyright (c) 1999-2002 Robert CHERAMY <robert@cheramy.net> |
|---|
| 4 | # Copyright (c) 2001 Loïc Tortay & IN2P3 Computing Center <tortay@cc.in2p3.fr> |
|---|
| 5 | # |
|---|
| 6 | |
|---|
| 7 | # Version |
|---|
| 8 | VERSION=@VERSION@ |
|---|
| 9 | |
|---|
| 10 | # Directories |
|---|
| 11 | prefix = @prefix@ |
|---|
| 12 | exec_prefix = @exec_prefix@ |
|---|
| 13 | SBINDIR = $(ROOT)@sbindir@ |
|---|
| 14 | MANDIR = $(ROOT)@mandir@ |
|---|
| 15 | ETCDIR = $(ROOT)@sysconfdir@ |
|---|
| 16 | LOGDIR = $(ROOT)@localstatedir@/log |
|---|
| 17 | VARRUNDIR = $(ROOT)@localstatedir@/run |
|---|
| 18 | |
|---|
| 19 | INSTALL = @INSTALL@ |
|---|
| 20 | RM = rm -f |
|---|
| 21 | SED = sed |
|---|
| 22 | CC = @CC@ |
|---|
| 23 | YACC = @YACC@ |
|---|
| 24 | LEX = @LEX@ |
|---|
| 25 | |
|---|
| 26 | CONFIGFILE=$(ETCDIR)/ipfm.conf |
|---|
| 27 | LOGFILE=$(LOGDIR)/ipfm/%d-%b.%H-%M |
|---|
| 28 | PIDFILE=$(VARRUNDIR)/ipfm.pid |
|---|
| 29 | |
|---|