diff options
Diffstat (limited to 'config_test/Makefile')
-rw-r--r-- | config_test/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config_test/Makefile b/config_test/Makefile new file mode 100644 index 00000000..295696e9 --- /dev/null +++ b/config_test/Makefile | |||
@@ -0,0 +1,10 @@ | |||
1 | |||
2 | all: child_test.c | ||
3 | gcc -o child_test child_test.c | ||
4 | |||
5 | test: | ||
6 | ./run_tests 10 | ||
7 | |||
8 | clean: | ||
9 | rm -f child_test | ||
10 | |||