File: Makefile.am

package info (click to toggle)
p4est 2.3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,536 kB
  • sloc: ansic: 87,528; makefile: 855; sh: 635; perl: 272; python: 226; awk: 40; javascript: 23
file content (15 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

# This file is part of the SC Library
# Makefile.am in example/pthread
# included non-recursively from toplevel directory

if SC_ENABLE_PTHREAD

bin_PROGRAMS += example/pthread/sc_pthread example/pthread/sc_condvar
example_pthread_sc_pthread_SOURCES = example/pthread/pthread.c
example_pthread_sc_condvar_SOURCES = example/pthread/condvar.c

LINT_CSOURCES += $(example_pthread_sc_pthread_SOURCES) \
                 $(example_pthread_sc_condvar_SOURCES)

endif