~smoser/ubuntu/oneiric/openvpn/lp-794916

« back to all changes in this revision

Viewing changes to service-win32/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2008-07-23 10:38:13 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080723103813-axq5wohvwjr4jo0s
Tags: 2.1~rc8-1
* New upstream version
* Added Build-dep on libpkcs11-helper1 to re-enable PKCS#11
  support. Sorry for the delay Florian :) (Closes: #475353)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# This makefile builds the OpenVPN win32 service
2
 
# wrapper using the mingw environment.
3
 
#
4
 
# service.c and service.h should be generated by
5
 
# applying service.patch to the Platform
6
 
# SDK service sample.
7
 
 
8
 
EXE = ${PRODUCT_UNIX_NAME}serv.exe
9
 
 
10
 
HEADERS = service.h
11
 
 
12
 
OBJS =  openvpnserv.o service.o
13
 
 
14
 
INCLUDE_DIRS =
15
 
 
16
 
CC = gcc -g -O2 -Wall -Wno-unused-function -Wno-unused-variable -mno-cygwin
17
 
 
18
 
all : ${OBJS}
19
 
        ${CC} -o ${EXE} ${OBJS}
20
 
 
21
 
clean :
22
 
        rm -f ${OBJS} ${EXE}
23
 
 
24
 
%.o : %.c ${HEADERS}
25
 
        ${CC} ${INCLUDE_DIRS} -c $< -o $@