Makefile.am 901 B

123456789101112131415161718192021222324252627
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. INCLUDES = -I$(top_srcdir)/include
  4. noinst_PROGRAMS = decoder_example encoder_example chaining_example\
  5. vorbisfile_example seeking_example
  6. LDADD = ../lib/libvorbis.la $(OGG_LIBS)
  7. decoder_example_SOURCES = decoder_example.c
  8. encoder_example_SOURCES = encoder_example.c
  9. encoder_example_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la $(OGG_LIBS)
  10. chaining_example_SOURCES = chaining_example.c
  11. chaining_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la $(OGG_LIBS)
  12. vorbisfile_example_SOURCES = vorbisfile_example.c
  13. vorbisfile_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la $(OGG_LIBS)
  14. seeking_example_SOURCES = seeking_example.c
  15. seeking_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la $(OGG_LIBS)
  16. debug:
  17. $(MAKE) all CFLAGS="@DEBUG@"
  18. profile:
  19. $(MAKE) all CFLAGS="@PROFILE@"