mirror of
https://github.com/tailix/libclayer.git
synced 2024-11-13 11:04:17 -05:00
18 lines
301 B
Text
18 lines
301 B
Text
|
include $(top_srcdir)/make/shared.am
|
||
|
|
||
|
CLEANFILES =
|
||
|
TESTS =
|
||
|
noinst_PROGRAMS = $(TESTS)
|
||
|
|
||
|
##################
|
||
|
# test_arch_i386 #
|
||
|
##################
|
||
|
|
||
|
if WITH_ARCH_I386
|
||
|
TESTS += test_arch_i386
|
||
|
test_arch_i386_LDADD = $(top_builddir)/libkernaux.la
|
||
|
test_arch_i386_SOURCES = \
|
||
|
main.c \
|
||
|
test_arch_i386.c
|
||
|
endif
|