File: Makefile.am

package info (click to toggle)
libvorbis 1.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 8,144 kB
  • sloc: ansic: 54,777; sh: 11,440; xml: 982; perl: 787; makefile: 323
file content (19 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## Process this file with automake to produce Makefile.in

AUTOMAKE_OPTIONS = foreign

INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@

check_PROGRAMS = test

check: $(check_PROGRAMS)
	./test$(EXEEXT)

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@ -lm

debug:
	$(MAKE) check CFLAGS="@DEBUG@"

profile:
	$(MAKE) check CFLAGS="@PROFILE@"