Changeset 633456e in rtems for cpukit/telnetd/Makefile.am
- Timestamp:
- Jan 15, 2004, 3:47:28 AM (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7c5a840
- Parents:
- 033f0686
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/telnetd/Makefile.am
r033f0686 r633456e 3 3 ## 4 4 5 LIBNAME = libtelnetd-tmp6 LIB = $(ARCH)/$(LIBNAME).a7 8 C_FILES = pty.c telnetd.c icmds.c9 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))10 11 5 include $(top_srcdir)/automake/compile.am 12 6 include $(top_srcdir)/automake/lib.am 13 7 14 # 15 # (OPTIONAL) Add local stuff here using += 16 # 8 EXTRA_LIBRARIES = 9 CLEANFILES = 17 10 18 11 if HAS_NETWORKING … … 20 13 include_rtems_HEADERS = pty.h telnetd.h 21 14 22 $(LIB): $(OBJS) 23 $(make-library) 15 EXTRA_LIBRARIES += libtelnetd.a 16 CLEANFILES += libtelnetd.a 17 libtelnetd_a_SOURCES = pty.c pty.h telnetd.c telnetd.h icmds.c 18 libtelnetd_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 24 19 25 all-local: $(PREINSTALL_FILES) $(OBJS) $(LIB) 20 EXTRA_LIBRARIES += libtelnetd_g.a 21 CLEANFILES += libtelnetd_g.a 22 libtelnetd_g_a_SOURCES = $(libtelnetd_a_SOURCES) 23 libtelnetd_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 24 25 noinst_DATA = libtelnetd$(LIB_VARIANT).a 26 26 endif 27 27 28 .PRECIOUS: $(LIB) 28 EXTRA_DIST = README 29 29 30 EXTRA_DIST = README pty.c telnetd.c pty.h icmds.c telnetd.h 30 all-local: $(PREINSTALL_FILES) 31 31 32 32 PREINSTALL_FILES = … … 47 47 endif 48 48 49 CLEANFILES = $(PREINSTALL_FILES)49 CLEANFILES += $(PREINSTALL_FILES) 50 50 51 51 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.