forked from Imagelibrary/rtems
* libchip/Makefile.am, libnetworking/pppd/Makefile.am, libnetworking/rtems_servers/Makefile.am, libnetworking/rtems_telnetd/Makefile.am, librdbg/Makefile.am, optman/Makefile.am, support/Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
include $(top_srcdir)/automake/compile.am
|
|
|
|
noinst_LIBRARIES =
|
|
|
|
if HAS_NETWORKING
|
|
include_rtemsdir = $(includedir)/rtems
|
|
include_rtems_HEADERS = pty.h telnetd.h
|
|
|
|
noinst_LIBRARIES += libtelnetd.a
|
|
libtelnetd_a_SOURCES = pty.c pty.h telnetd.c telnetd.h icmds.c
|
|
libtelnetd_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
endif
|
|
|
|
EXTRA_DIST = README
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
PREINSTALL_DIRS =
|
|
PREINSTALL_FILES =
|
|
|
|
if HAS_NETWORKING
|
|
$(PROJECT_INCLUDE)/rtems/$(dirstamp):
|
|
@$(mkdir_p) $(PROJECT_INCLUDE)/rtems
|
|
@: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
|
|
$(PROJECT_INCLUDE)/rtems/pty.h: pty.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/pty.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/pty.h
|
|
|
|
$(PROJECT_INCLUDE)/rtems/telnetd.h: telnetd.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/telnetd.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/telnetd.h
|
|
endif
|
|
|
|
CLEANFILES = $(PREINSTALL_FILES)
|
|
DISTCLEANFILES = $(PREINSTALL_DIRS)
|
|
|
|
include $(top_srcdir)/automake/local.am
|