mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-03 18:49:29 -05:00
pthread fix via configure option git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1292 f882894a-f735-0410-b71e-b25c423dba1c
12 lines
141 B
Makefile
12 lines
141 B
Makefile
|
|
all: child_test
|
|
|
|
child_test: child_test.c
|
|
gcc -o child_test child_test.c
|
|
|
|
test:
|
|
./run_tests 10 100 > /dev/null
|
|
|
|
clean:
|
|
rm -f child_test
|
|
|