######################################################################## # # $Id: Makefile.in,v 1.1 2006/05/25 20:28:41 mavrik Exp $ # ######################################################################## # # Purpose: Makefile for webjob-dsvtool. # ######################################################################## #.SILENT: bindir = @bindir@ CC = @CC@ CFLAGS = @CFLAGS@ exec_prefix = @exec_prefix@ EXTENSION = @extension@ INSTALL = @INSTALL@ LIBS = @LIBS@ prefix = @prefix@ PROGRAM = webjob-dsvtool${EXTENSION} srcdir = @srcdir@ VPATH = ${srcdir} AP_INCS = @ap_incs@ AP_SRCS = @ap_srcs@ SSL_INCFLAGS = @ssl_incflags@ SSL_INCS = @ssl_incs@ SSL_LIBFLAGS = @ssl_libflags@ INCFLAGS = -I. ${SSL_INCFLAGS} INCS = ${AP_INCS} dsv.h webjob-dsvtool.h LIBFLAGS = ${SSL_LIBFLAGS} ${LIBS} # Note: This order matters for MinGW builds. OBJS = ${SRCS:.c=.o} SRCS = ${AP_SRCS} dsv.c webjob-dsvtool.c all: ${PROGRAM} test: ${PROGRAM} install: ${PROGRAM} @umask 022 ; if [ ! -d ${bindir} ] ; then mkdir -p ${bindir} ; fi @${INSTALL} -m 755 ${PROGRAM} ${bindir} clean: rm -f ${PROGRAM} ${OBJS} ${PROGRAM}.core core clean-all: clean rm -f Makefile ${PROGRAM}: ${OBJS} ${CC} ${OBJS} -o $@ ${CFLAGS} ${INCFLAGS} ${LIBFLAGS} .c.o: ${CC} ${CFLAGS} ${INCFLAGS} -c $<