License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / tools / testing / selftests / exec / Makefile
blob427c41ba51513617883cee81cbe943bb6c523f67
1 # SPDX-License-Identifier: GPL-2.0
2 CFLAGS = -Wall
4 TEST_GEN_PROGS := execveat
5 TEST_GEN_FILES := execveat.symlink execveat.denatured script subdir
6 # Makefile is a run-time dependency, since it's accessed by the execveat test
7 TEST_FILES := Makefile
9 EXTRA_CLEAN := $(OUTPUT)/subdir.moved $(OUTPUT)/execveat.moved $(OUTPUT)/xxxxx*
11 include ../lib.mk
13 $(OUTPUT)/subdir:
14 mkdir -p $@
15 $(OUTPUT)/script:
16 echo '#!/bin/sh' > $@
17 echo 'exit $$*' >> $@
18 chmod +x $@
19 $(OUTPUT)/execveat.symlink: $(OUTPUT)/execveat
20 cd $(OUTPUT) && ln -s -f $(shell basename $<) $(shell basename $@)
21 $(OUTPUT)/execveat.denatured: $(OUTPUT)/execveat
22 cp $< $@
23 chmod -x $@