mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
32c697806f
Moving mytap library into unittest/ Adding 'test' target to make and run unit tests. Minor fixes.
15 lines
273 B
Makefile
15 lines
273 B
Makefile
|
|
AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include
|
|
AM_CPPFLAGS += -I$(srcdir)/..
|
|
|
|
AM_LDFLAGS = -L$(srcdir)/..
|
|
|
|
AM_CFLAGS = -Wall -ansi -pedantic
|
|
|
|
LDADD = -lmytap
|
|
|
|
noinst_PROGRAMS = basic.t
|
|
|
|
basic_t_SOURCES = basic.t.c
|
|
|
|
all: $(noinst_PROGRAMS)
|