"Fossies" - the Fresh Open Source Software Archive

Member "portfwd-0.29/src/Makefile.am" (30 May 2005, 460 Bytes) of package /linux/privat/old/portfwd-0.29.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 CFLAGS   = -Wall -ggdb -O3 -DPORTFWD_CONF=\"$(sysconfdir)/portfwd.cfg\"
    2 CXXFLAGS = $(CFLAGS)
    3 INCLUDES = -I$(top_srcdir)/src
    4 
    5 sbin_PROGRAMS = portfwd
    6 portfwd_SOURCES = addr.cc from_addr.cc host_map.cc portfwd.cc \
    7 	dst_addr.cc director.cc entry.cc net_portion.cc \
    8 	proto_map.cc forward.cc port_pair.cc  solve.cc \
    9 	yconf.c lexconf.c util.cc fd_set.cc
   10 
   11 LDADD = getopt.o getopt1.o
   12 
   13 yconf.c: conf.y
   14 	$(YACC) -v -d -o $@ $<
   15 
   16 lexconf.c: conf.lex
   17 	$(LEX) -t $< > $@