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