api: use SS and PS options properly in sched.c
[libc-test] / src / api / Makefile
index 5df7ccb..7b7a19a 100644 (file)
@@ -1,12 +1,27 @@
 CFLAGS+=-std=c99 -pedantic-errors -Wall -Werror -Wno-unused -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700
-#CFLAGS+=-DX_PS -DX_TPS -DX_TYM -DX_RPP_TPP
+CFLAGS+=-DX_PS -DX_TPS -DX_SS
+#CFLAGS+=-DX_RPP_TPP -DX_TYM -DX_FMTMSG -DX_NDBM
+LDFLAGS+=-lcrypt -ldl -lm -lpthread -lrt
 
-all:
-       for i in *.c; do \
-               LC_ALL=C $(CC) $(CFLAGS) -c $$i 2>&1; \
-       done |grep -v 'Each undeclared identifier is reported only once' |grep -v 'for each function it appears in'
-       $(CC) $(LDFLAGS) -lcrypt -ldl -lm -lpthread -lrt *.o -o main 2>&1
+SRC=$(sort $(wildcard *.c))
+ERR=$(SRC:.c=.err)
 
-clean:
-       rm -f main *.o
+-include ../../config.mak
+
+all: all.err
+
+run: all.err
+       cat $<
 
+all.err: $(ERR)
+       LC_ALL=C $(CC) $(LDFLAGS) -o main *.o 2>main.err || true
+       cat $(ERR) |\
+               grep -v 'In function .f.' |\
+               grep -v 'Each undeclared identifier is reported only once' |\
+               grep -v 'for each function it appears in' >$@ || true
+
+%.err: %.c
+       LC_ALL=C $(CC) $(CFLAGS) -c $< 2>$@ || true
+
+clean:
+       rm -f main *.o *.err