chiark / gitweb /
Actual forwarder program compiles apparently ok.
[userv-utils] / ipif / Makefile
CommitLineData
12ecfeab 1# Copyright (C) 1999 Ian Jackson
1c1a9fa1 2#
12ecfeab 3# This is free software; you can redistribute it and/or modify it
4# under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful, but
9# WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11# General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with userv-utils; if not, write to the Free Software
15# Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16#
aaa9ab3a 17# $Id: Makefile,v 1.11 2000/05/30 18:48:16 ian Exp $
1c1a9fa1 18
2c310400 19OPTIMISE= -O2
1c1a9fa1 20CFLAGS= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith \
2c310400 21 -Wwrite-strings -g $(OPTIMISE) -D_GNU_SOURCE
1c1a9fa1 22
e5e5fd4e 23etcdir= /etc
6d90651a 24prefix= /usr/local
caad5ebb 25bindir= $(prefix)/bin
e5e5fd4e 26
27libdir= $(prefix)/lib
28libuserv= $(libdir)/userv
29
30etcuserv= $(etcdir)/userv
31services= $(etcuserv)/services.d
6d90651a 32
84f87e82 33TARGETS= service udptunnel-forwarder
34
35MECHFILES= null pkcs5 timestamp sequence blowfish
36MECHOBJS= $(foreach m, $(MECHFILES), mech-$m.o)
37
aaa9ab3a 38OBJS_FORWARD= forwarder.o $(MECHOBJS) blowfish.o automech.c utils.c
6d90651a 39
40all: $(TARGETS)
41
42install: all
e5e5fd4e 43 mkdir -p $(libuserv) $(services)
8d9c5866 44 cp -b service $(libuserv)/ipif
e5e5fd4e 45 cp ipif $(services)/ipif:new
8d9c5866 46 cp -b udptunnel $(bindir)/.
e5e5fd4e 47 set -e; cd $(services); test -f ipif || mv ipif:new ipif
84f87e82 48
49udptunnel-forwarder: $(OBJS_FORWARD)
50 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS_FORWARD)
51
52automech.c automech.h: automechgen.sh Makefile
53 ./$< $(MECHFILES)
54
aaa9ab3a 55forwarder.o $(MECHOBJS) automech.o utils.o: forwarder.h automech.h
56blowfish.o mech-blowfish.o: blowfish.h