"Fossies" - the Fresh Open Source Software Archive

Member "npadmin-0.14/Makefile.am~" (22 Nov 2002, 1093 Bytes) of package /linux/misc/old/npadmin-0.14.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 ## Process this file with automake to produce Makefile.in
    2 CXXFLAGS=@CXXFLAGS@ @WARNS@
    3 
    4 bin_PROGRAMS = npadmin
    5 
    6 npadmin_SOURCES = argflags.h ber.C ber.h beroid.C berseq.C compat.h \
    7 	npaconsts.h npadmin.C npahelpers.C npahelpers.h npaoids.h \
    8         npastructs.h oidseq.C oidseq.h printmib.C printmib.h session.C \
    9         session.h structfill.C structfill.h getopt.h getopt.c getopt1.c \
   10 	snmpsock.h snmpsock.C getopt.h getopt.c getopt1.c
   11 
   12 npadmin_LDADD = @LIBOBJS@
   13 
   14 EXTRA_DIST = npadmin.1 npadmin.spec TODO
   15 
   16 man_MANS = npadmin.1
   17 
   18 ## Standard CEPS stuff
   19 
   20 rpms: distcheck rpms-nocheck
   21 
   22 rpms-nocheck:
   23 	rpm -ta @PACKAGE@-@VERSION@.tar.gz
   24 	cp /usr/src/redhat/SRPMS/@PACKAGE@-@VERSION@-*.rpm .
   25 	cp /usr/src/redhat/RPMS/*/@PACKAGE@-@VERSION@-*.*.rpm .
   26 
   27 tag: distcheck tag-nocheck
   28 
   29 tag-nocheck:
   30 	cvs tag release-`echo "@VERSION@" | sed -e 's/\./-/g'`
   31 	cvs diff -r release-`echo "@VERSION@" | sed -e 's/\./-/g'` > .tagdiff; exit 0
   32 	@[ ! -s .tagdiff ] || { rm -f .tagdiff; echo "Tagging unsuccessful"; exit 1 }
   33 	@rm -f .tagdiff
   34 
   35 release: distcheck rpms-nocheck tag-nocheck
   36 
   37 ## End standard CEPS stuff