mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
15 lines
374 B
Makefile
15 lines
374 B
Makefile
## Makefile.am for examples/test_manager
|
|
|
|
DEFAULT_INCLUDES = -I. -I$(top_srcdir)/include
|
|
|
|
ulib_la = @ULIBS@ $(top_builddir)/src/ulib/lib@ULIB@.la @ULIB_LIBS@
|
|
|
|
test_manager_SOURCES = test_manager.cpp
|
|
test_manager_LDADD = $(ulib_la)
|
|
test_manager_LDFLAGS = $(PRG_LDFLAGS)
|
|
|
|
noinst_PROGRAMS = test_manager
|
|
|
|
clean-local:
|
|
-rm -rf core .libs *.bb* *.da *.gc* *.la *.exe gmon.out
|