etc/services - sync with NetBSD-8
[minix.git] / external / bsd / flex / dist / tests / test-reject / Makefile.am
blob902d7be49a8c9f71b7393ea879a53cf8aa421c40
1 # This file is part of flex.
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions
5 # are met:
7 # 1. Redistributions of source code must retain the above copyright
8 #    notice, this list of conditions and the following disclaimer.
9 # 2. Redistributions in binary form must reproduce the above copyright
10 #    notice, this list of conditions and the following disclaimer in the
11 #    documentation and/or other materials provided with the distribution.
13 # Neither the name of the University nor the names of its contributors
14 # may be used to endorse or promote products derived from this software
15 # without specific prior written permission.
17 # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
18 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
19 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 # PURPOSE.
23 FLEX = $(top_builddir)/flex
25 EXTRA_DIST = scanner.l test.input
26 CLEANFILES = scanner.c $(testname)$(EXEEXT)-* OUTPUT $(OBJS)
27 OBJS = test-reject-nr.o test-reject-r.o test-reject-ver.o \
28        test-reject-ser.o
30 AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
32 tests = test-reject-nr$(EXEEXT) test-reject-r$(EXEEXT) \
33         test-reject-ser$(EXEEXT) test-reject-ver$(EXEEXT)
34 testname = test-reject
36 test-reject-nr.c: $(srcdir)/scanner.l
37         $(FLEX) -o $@ $(LFLAGS) $<
39 test-reject-ver.c: $(srcdir)/scanner.l
40         $(FLEX) -o $@  --tables-verify --tables-file=`basename $@ .c`.tables $(LFLAGS) $<
42 test-reject-ser.c: $(srcdir)/scanner.l
43         $(FLEX) -o $@ --tables-file=`basename $@ .c`.tables $(LFLAGS) $<
45 test-reject-r.c: $(srcdir)/scanner.l
46         $(FLEX) --reentrant -o $@ $(LFLAGS) $<
48 test-reject-nr$(EXEEXT): test-reject-nr.o
49         $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< $(LOADLIBES)
51 test-reject-ver$(EXEEXT): test-reject-ver.o
52         $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< $(LOADLIBES)
54 test-reject-ser$(EXEEXT): test-reject-ser.o
55         $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< $(LOADLIBES)
57 test-reject-r$(EXEEXT): test-reject-r.o
58         $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< $(LOADLIBES)
60 $(testname)$(EXEEXT): $(OBJS)
62 test: $(tests)
63         ./$(testname)-nr$(EXEEXT) < $(srcdir)/test.input
64         ./$(testname)-r$(EXEEXT) < $(srcdir)/test.input
65         ./$(testname)-ver$(EXEEXT) $(testname)-ver.tables < $(srcdir)/test.input
66         ./$(testname)-ser$(EXEEXT) $(testname)-ser.tables < $(srcdir)/test.input
68 test-reject-nr.o: test-reject-nr.c
69         $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) $<
71 test-reject-ver.o: test-reject-ver.c
72         $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) -DTEST_HAS_TABLES_EXTERNAL $(CFLAGS) $<
74 test-reject-ser.o: test-reject-ser.c
75         $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) -DTEST_HAS_TABLES_EXTERNAL $(CFLAGS) $<
77 test-reject-r.o: test-reject-r.c
78         $(CC) -c -o $@ $(AM_CPPFLAGS) $(CPPFLAGS) -DTEST_IS_REENTRANT $(CFLAGS) $<