Merge pull request #19 from nspaseski/master
[deliverable/titan.core.git] / license / Makefile_renew_license
CommitLineData
970ed795 1###############################################################################
3abe9331 2# Copyright (c) 2000-2015 Ericsson Telecom AB
970ed795
EL
3# All rights reserved. This program and the accompanying materials
4# are made available under the terms of the Eclipse Public License v1.0
5# which accompanies this distribution, and is available at
6# http://www.eclipse.org/legal/epl-v10.html
7###############################################################################
8GCC_DIR=/mnt/TTCN/Tools/gcc-4.1.1-sol8
9CGIC_DIR=/mnt/TTCN/Tools/cgic205-gcc3.0.4-sol8
10MYSQL_DIR=/mnt/TTCN/Tools/mysql-standard-4.1.22-sun-solaris2.8-sparc
11
12CC=${GCC_DIR}/bin/gcc
13
14all: renew_license.cgi
15
16renew_license.cgi: renew_license.o
17 ${CC} -o renew_license.cgi renew_license.o -L${CGIC_DIR} -L${MYSQL_DIR}/lib -lcgic -lmysqlclient -lz -lresolv -lxnet -lm
18
19renew_license.o: renew_license.c
20 ${CC} -c renew_license.c -I${CGIC_DIR} -I${MYSQL_DIR}/include
21
22clean:
23 rm renew_license.cgi
24
25install:
26 cp renew_license.html /export/localhome/httpd/htdocs/
27 cp renew_license.cgi /export/localhome/httpd/cgi-bin/
This page took 0.027033 seconds and 5 git commands to generate.