Makefile.am 945 B

1234567891011121314151617181920212223242526272829
  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 = decoder_example encoder_example chaining_example\
  5. vorbisfile_example seeking_example
  6. # uncomment to build static executables from the example code
  7. #LDFLAGS = -all-static
  8. LDADD = ../lib/libvorbis.la
  9. decoder_example_SOURCES = decoder_example.c
  10. encoder_example_SOURCES = encoder_example.c
  11. encoder_example_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la
  12. chaining_example_SOURCES = chaining_example.c
  13. chaining_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la
  14. vorbisfile_example_SOURCES = vorbisfile_example.c
  15. vorbisfile_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la
  16. seeking_example_SOURCES = seeking_example.c
  17. seeking_example_LDADD = ../lib/libvorbisfile.la ../lib/libvorbis.la
  18. debug:
  19. $(MAKE) all CFLAGS="@DEBUG@"
  20. profile:
  21. $(MAKE) all CFLAGS="@PROFILE@"