mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
17 lines
448 B
Makefile
17 lines
448 B
Makefile
## Makefile.am for examples/download_accelerator
|
|
|
|
AUTOMAKE_OPTIONS = ## dist-shar dist-zip
|
|
|
|
DEFAULT_INCLUDES = -I. -I$(top_srcdir)/include
|
|
|
|
ulib_la = @ULIBS@ $(top_builddir)/src/ulib/lib@ULIB@.la @ULIB_LIBS@
|
|
|
|
download_accelerator_LDADD = $(ulib_la)
|
|
download_accelerator_SOURCES = main.cpp
|
|
download_accelerator_LDFLAGS = $(PRG_LDFLAGS)
|
|
|
|
noinst_PROGRAMS = download_accelerator
|
|
|
|
clean-local:
|
|
-rm -rf core .libs *.bb* *.da *.gc* *.la *.exe gmon.out
|