diff options
author | Zygmunt Krynicki <zygmunt.krynicki@canonical.com> | 2014-04-07 18:29:32 +0200 |
---|---|---|
committer | Zygmunt Krynicki <zygmunt.krynicki@canonical.com> | 2014-04-07 18:29:32 +0200 |
commit | 2aa4e8301ee0f7038476365be79357d211fa7816 (patch) | |
tree | e8e7aeffbe8d889a4f0497b1d5c6338b0fd42a31 /src/Makefile | |
parent | 071f7927e5a2aff9ad655a6eadaf964191aa1032 (diff) |
providers:checkbox: normalize provider directories
In addition to dropping the provider_ prefix from bin, data, whitelists and jobs two of the source files moved from bin/ to the new src/ directory. They are accompanied by a new, trivial Makefile. Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..49d167b --- /dev/null +++ b/src/Makefile @@ -0,0 +1,11 @@ +.PHONY: +all: clocktest threaded_memtest + +.PHONY: clean +clean: + rm -f clocktest threaded_memtest + +threaded_memtest: CFLAGS += -pthread +threaded_memtest: CFLAGS += -Wno-unused-but-set-variable + +CFLAGS += -Wall |