1e4589b921
- r263220 Migrate tools/regression/sbin/ to the new tests layout. - r263222 Add Makefile missed in r263220. - r263226 Migrate tools/regression/{usr.bin/lastcomm,usr.sbin}/ to the new tests layout. - r263227 Migrate most of tools/regression/usr.bin/ to the new tests layout. - r263345 Expand tabs that sneaked in into spaces. - r263346 Migrate tools/regression/usr.bin/make/ to the new tests layout. - r263348 Add Makefiles missed in r263346. - r263351 Migrate tools/regression/usr.bin/pkill/ to the new tests layout. - r263388 Mark multi_test as requiring /usr/share/dict/words. - r263814 Fix path to the run.pl script to let these tests run. - r264742 Prevent building tests when bootstrapping make. This is 'make tinderbox' clean.
32 lines
749 B
Makefile
32 lines
749 B
Makefile
# $OpenBSD: Makefile,v 1.10 2002/04/26 13:13:41 espie Exp $
|
|
# $FreeBSD$
|
|
|
|
# -DEXTENDED
|
|
# if you want the paste & spaste macros.
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= m4
|
|
CFLAGS+=-DEXTENDED -I${.CURDIR} -I${.CURDIR}/lib
|
|
DPADD= ${LIBY} ${LIBL} ${LIBM}
|
|
LDADD= -ly -ll -lm
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c parser.y tokenizer.l
|
|
.PATH: ${.CURDIR}/lib
|
|
SRCS+= ohash_create_entry.c ohash_delete.c ohash_do.c ohash_entries.c \
|
|
ohash_enum.c ohash_init.c ohash_int.h ohash_interval.c \
|
|
ohash_lookup_interval.c ohash_lookup_memory.c ohash_qlookup.c \
|
|
ohash_qlookupi.c
|
|
|
|
tokenizer.o: parser.h
|
|
|
|
CLEANFILES+= parser.c parser.h tokenizer.o
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|