Home | History | Annotate | Line # | Download | only in misc
Makefile.am revision 1.1.1.2
      1      1.1  christos include $(top_srcdir)/Makefile.top
      2      1.1  christos include $(top_srcdir)/Makefile.docs
      3      1.1  christos 
      4      1.1  christos OPTIONS_FILES =				\
      5      1.1  christos 	rndc.grammar			\
      6      1.1  christos 	options				\
      7      1.1  christos 	primary.zoneopt			\
      8      1.1  christos 	secondary.zoneopt			\
      9      1.1  christos 	mirror.zoneopt			\
     10      1.1  christos 	forward.zoneopt			\
     11      1.1  christos 	hint.zoneopt			\
     12      1.1  christos 	stub.zoneopt			\
     13      1.1  christos 	static-stub.zoneopt		\
     14      1.1  christos 	redirect.zoneopt		\
     15      1.1  christos 	in-view.zoneopt
     16      1.1  christos 
     17      1.1  christos EXTRA_DIST =			\
     18      1.1  christos 	$(OPTIONS_FILES)	\
     19      1.1  christos 	checkgrammar.py		\
     20      1.1  christos 	parsegrammar.py		\
     21      1.1  christos 	sort-options.pl
     22      1.1  christos 
     23      1.1  christos if MAINTAINER_MODE
     24      1.1  christos 
     25      1.1  christos MAINTAINERCLEANFILES = $(OPTIONS_FILES)
     26      1.1  christos 
     27      1.1  christos noinst_PROGRAMS = cfg_test
     28      1.1  christos 
     29      1.1  christos cfg_test_CPPFLAGS =			\
     30      1.1  christos 	$(AM_CPPFLAGS)			\
     31      1.1  christos 	$(LIBISC_CFLAGS)		\
     32      1.1  christos 	$(LIBDNS_CFLAGS)		\
     33      1.1  christos 	$(LIBISCCFG_CFLAGS)
     34      1.1  christos 
     35      1.1  christos cfg_test_LDADD =			\
     36      1.1  christos 	$(LIBISC_LIBS)			\
     37      1.1  christos 	$(LIBDNS_LIBS)			\
     38      1.1  christos 	$(LIBISCCFG_LIBS)
     39      1.1  christos 
     40  1.1.1.2  christos BUILT_SOURCES +=				\
     41      1.1  christos 	$(OPTIONS_FILES)
     42      1.1  christos 
     43      1.1  christos rndc.grammar: cfg_test
     44      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --rndc --grammar | $(PERL) $(srcdir)/sort-options.pl > $@
     45      1.1  christos 
     46      1.1  christos options: cfg_test
     47      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --named --grammar | $(PERL) $(srcdir)/sort-options.pl > $@
     48      1.1  christos 
     49      1.1  christos primary.zoneopt: cfg_test
     50      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar primary > $@
     51      1.1  christos 
     52      1.1  christos secondary.zoneopt: cfg_test
     53      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar secondary > $@
     54      1.1  christos 
     55      1.1  christos mirror.zoneopt: cfg_test
     56      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar mirror > $@
     57      1.1  christos 
     58      1.1  christos forward.zoneopt: cfg_test
     59      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar forward > $@
     60      1.1  christos 
     61      1.1  christos hint.zoneopt: cfg_test
     62      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar hint > $@
     63      1.1  christos 
     64      1.1  christos stub.zoneopt: cfg_test
     65      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar stub > $@
     66      1.1  christos 
     67      1.1  christos static-stub.zoneopt: cfg_test
     68      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar static-stub > $@
     69      1.1  christos 
     70      1.1  christos redirect.zoneopt: cfg_test
     71      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar redirect > $@
     72      1.1  christos 
     73      1.1  christos in-view.zoneopt: cfg_test
     74      1.1  christos 	$(AM_V_CFG_TEST)$(builddir)/cfg_test --zonegrammar in-view > $@
     75      1.1  christos 
     76      1.1  christos endif
     77