1 # 2 # Copyright (c) International Business Machines Corp., 2001 3 # 4 # This program is free software; you can redistribute it and/or modify 5 # it under the terms of the GNU General Public License as published by 6 # the Free Software Foundation; either version 2 of the License, or 7 # (at your option) any later version. 8 # 9 # This program is distributed in the hope that it will be useful, 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 12 # the GNU General Public License for more details. 13 # 14 # You should have received a copy of the GNU General Public License 15 # along with this program; if not, write to the Free Software 16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 17 # 18 19 top_srcdir ?= ../../../.. 20 21 %_SYS__newselect: %_SYS__newselect.o 22 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ 23 %_SYS_select: %_SYS_select.o 24 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ 25 %_SYS_pselect6: %_SYS_pselect6.o 26 $(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@ 27 28 %_SYS__newselect.o: %.c select.h 29 $(COMPILE.c) -DSYSCALL_SELECT__NEWSELECT $(OUTPUT_OPTION) $< 30 %_SYS_select.o: %.c select.h 31 $(COMPILE.c) -DSYSCALL_SELECT_SELECT $(OUTPUT_OPTION) $< 32 %_SYS_pselect6.o: %.c select.h 33 $(COMPILE.c) -DSYSCALL_SELECT_PSELECT6 $(OUTPUT_OPTION) $< 34 35 select01 select02 select03 select04: select.h 36 select01 select02 select03 select04: CFLAGS+=-DSYSCALL_SELECT_LIBC 37 select04: LDLIBS+=-lrt 38 select04_SYS_%: LDLIBS+=-lrt 39 40 MAKE_TARGETS := $(notdir $(patsubst %.c,%,$(wildcard $(abs_srcdir:%=%/)*.c))) \ 41 $(notdir $(patsubst %.c,%_SYS__newselect,$(wildcard $(abs_srcdir:%=%/)*.c))) \ 42 $(notdir $(patsubst %.c,%_SYS_select,$(wildcard $(abs_srcdir:%=%/)*.c))) \ 43 $(notdir $(patsubst %.c,%_SYS_pselect6,$(wildcard $(abs_srcdir:%=%/)*.c))) 44 45 include $(top_srcdir)/include/mk/testcases.mk 46 47 include $(top_srcdir)/include/mk/generic_leaf_target.mk 48