##############################################################################
# Copyright (c) 2000-2018 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
#
# Contributors:
#   Balasko, Jeno
#   Gecse, Roland
#
##############################################################################
GCC_DIR=/mnt/TTCN/Tools/gcc-4.1.1-sol8
CGIC_DIR=/mnt/TTCN/Tools/cgic205-gcc3.0.4-sol8
MYSQL_DIR=/mnt/TTCN/Tools/mysql-standard-4.1.22-sun-solaris2.8-sparc

CC=${GCC_DIR}/bin/gcc

all: renew_license.cgi

renew_license.cgi: renew_license.o
	${CC} -o renew_license.cgi renew_license.o -L${CGIC_DIR} -L${MYSQL_DIR}/lib -lcgic -lmysqlclient -lz -lresolv -lxnet -lm

renew_license.o: renew_license.c
	${CC} -c renew_license.c -I${CGIC_DIR} -I${MYSQL_DIR}/include

clean:
	rm renew_license.cgi

install:
	cp renew_license.html /export/localhome/httpd/htdocs/
	cp renew_license.cgi /export/localhome/httpd/cgi-bin/
