mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-28 00:24:44 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
20 lines
432 B
Makefile
20 lines
432 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
check_PROGRAMS = test
|
|
|
|
check: $(check_PROGRAMS)
|
|
./test$(EXEEXT)
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include @OGG_CFLAGS@
|
|
|
|
test_SOURCES = util.c util.h write_read.c write_read.h test.c
|
|
test_LDADD = ../lib/libvorbisenc.la ../lib/libvorbis.la @OGG_LIBS@ @VORBIS_LIBS@
|
|
|
|
debug:
|
|
$(MAKE) check CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) check CFLAGS="@PROFILE@"
|