Makefile.am 432 B

1234567891011121314151617181920
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. check_PROGRAMS = test
  4. check: $(check_PROGRAMS)
  5. ./test$(EXEEXT)
  6. AM_CPPFLAGS = -I$(top_srcdir)/include @OGG_CFLAGS@
  7. test_SOURCES = util.c util.h write_read.c write_read.h test.c
  8. test_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la @OGG_LIBS@ @VORBIS_LIBS@
  9. debug:
  10. $(MAKE) check CFLAGS="@DEBUG@"
  11. profile:
  12. $(MAKE) check CFLAGS="@PROFILE@"