Makefile.am 413 B

1234567891011121314151617181920
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
  4. noinst_PROGRAMS = test
  5. check: $(noinst_PROGRAMS)
  6. ./test$(EXEEXT)
  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@
  9. debug:
  10. $(MAKE) all CFLAGS="@DEBUG@"
  11. profile:
  12. $(MAKE) all CFLAGS="@PROFILE@"