File: Makefile.am

package info (click to toggle)
cunit 2.1-3-dfsg-2.7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,304 kB
  • sloc: sh: 9,860; ansic: 9,503; cpp: 1,270; makefile: 382; perl: 45
file content (22 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## Process this file with automake to produce Makefile.in

exampledir=${datadir}/@PACKAGE@/Examples/Basic

if ENABLE_EXAMPLES
if ENABLE_BASIC

example_PROGRAMS = BasicTest

BasicTest_SOURCES = BasicTest.c
BasicTest_LDADD = -lcunit -lcunitexamples
BasicTest_LDFLAGS = -L.. -lm
INCLUDES = -I..

if ENABLE_CURSES
BasicTest_LDADD += -l$(CURSES_LIB)
endif

example_DATA = README

endif
endif