selftest/mount: enable cross compilation
Use the CC variable instead of hard coding gcc. Also clean up the compiler options by creating a CFLAGS variable. Signed-off-by: Tyler Baker <tyler.baker@linaro.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
parent
52dd5576cd
commit
365ce9997b
1 changed files with 3 additions and 2 deletions
|
@ -1,9 +1,10 @@
|
||||||
# Makefile for mount selftests.
|
# Makefile for mount selftests.
|
||||||
|
CFLAGS = -Wall \
|
||||||
|
-O2
|
||||||
all: unprivileged-remount-test
|
all: unprivileged-remount-test
|
||||||
|
|
||||||
unprivileged-remount-test: unprivileged-remount-test.c
|
unprivileged-remount-test: unprivileged-remount-test.c
|
||||||
gcc -Wall -O2 unprivileged-remount-test.c -o unprivileged-remount-test
|
$(CC) $(CFLAGS) unprivileged-remount-test.c -o unprivileged-remount-test
|
||||||
|
|
||||||
include ../lib.mk
|
include ../lib.mk
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue