shithub: scc

ref: 5ac3a0d4c1a9d7e4d3912c4770084b885007aca6
dir: /tests/libc/execute/Makefile/

View raw version
.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`