ref: e06ce64d6557512a21c46a2dfa864f2e9a08f70b
dir: /tests/libc/execute/Makefile/
.POSIX:
CC = gcc-scc
.c:
$(CC) $(CFLAGS) -o $@ $<
all:
CC=$(CC) ./chktest.sh libc-tests.lst
tests:
@$(MAKE) |\
grep -v TODO |\
grep FAIL >/dev/null &&\
printf '[FAIL]' || printf '[PASS]'; printf '\tlibc/execute\n'
clean:
rm -f *.o *core test.log `awk '{print $$1}' libc-tests.lst`