blob: 7c79b3fcfcc0503d5dfd5038491bb528c6a7b09b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
## check-libopts.mf - automake fragment
##
## If we are not using the tearoff libopts, we won't be
## building its libopts.la, so the submake is allowed
## to fail.
BUILT_SOURCES += check-libopts
CLEANFILES += check-libopts
check-libopts: libopts/libopts.la
@echo stamp > $@
libopts/libopts.la:
-cd libopts && $(MAKE) $(AM_MAKEFLAGS) libopts.la
|