Deleted Added
full compact
Makefile (80021) Makefile (103412)
1#
1#
2# $FreeBSD: head/lib/libkse/test/Makefile 80021 2001-07-20 04:23:11Z jasone $
2# $FreeBSD: head/lib/libkse/test/Makefile 103412 2002-09-16 19:29:34Z mini $
3#
3#
4# Automated test suite for libc_r (pthreads).
4# Automated test suite for libpthread (pthreads).
5#
6
7# File lists.
8
9# Tests written in C.
10CTESTS := hello_d.c hello_s.c join_leak_d.c mutex_d.c sem_d.c sigsuspend_d.c \
11 sigwait_d.c
12

--- 8 unchanged lines hidden (view full) ---

21CTESTS := $(CTESTS:R)
22BTESTS := $(BTESTS:R)
23
24CPPFLAGS := -D_LIBC_R_ -D_REENTRANT
25CFLAGS := -Wall -pipe -g3
26LDFLAGS_A := -static
27LDFLAGS_P := -pg
28LDFLAGS_S :=
5#
6
7# File lists.
8
9# Tests written in C.
10CTESTS := hello_d.c hello_s.c join_leak_d.c mutex_d.c sem_d.c sigsuspend_d.c \
11 sigwait_d.c
12

--- 8 unchanged lines hidden (view full) ---

21CTESTS := $(CTESTS:R)
22BTESTS := $(BTESTS:R)
23
24CPPFLAGS := -D_LIBC_R_ -D_REENTRANT
25CFLAGS := -Wall -pipe -g3
26LDFLAGS_A := -static
27LDFLAGS_P := -pg
28LDFLAGS_S :=
29LIBS := -lc_r
29LIBS := -lpthread
30
31# Flags passed to verify. "-v" or "-u" may be useful.
32VFLAGS :=
33
34all : default
35
36# Only use the following suffixes, in order to avoid any strange built-in rules.
37.SUFFIXES :

--- 78 unchanged lines hidden ---
30
31# Flags passed to verify. "-v" or "-u" may be useful.
32VFLAGS :=
33
34all : default
35
36# Only use the following suffixes, in order to avoid any strange built-in rules.
37.SUFFIXES :

--- 78 unchanged lines hidden ---