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