Changeset 74066232 in rtems for cpukit/telnetd/Makefile.am
- Timestamp:
- Dec 1, 2003, 8:43:12 AM (17 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 66851179
- Parents:
- 7ed1e747
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/telnetd/Makefile.am
r7ed1e747 r74066232 2 2 ## $Id$ 3 3 ## 4 5 4 6 5 LIBNAME = libtelnetd-tmp … … 10 9 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 10 12 13 11 include $(top_srcdir)/automake/compile.am 14 12 include $(top_srcdir)/automake/lib.am 15 16 $(PROJECT_INCLUDE)/rtems:17 @$(mkinstalldirs) $@18 $(PROJECT_INCLUDE)/rtems/%.h: %.h19 $(INSTALL_DATA) $< $@20 13 21 14 # … … 30 23 $(make-library) 31 24 32 PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \33 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)34 35 25 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB) 36 26 endif … … 40 30 EXTRA_DIST = README pty.c telnetd.c pty.h icmds.c telnetd.h 41 31 32 PREINSTALL_FILES = 33 34 if HAS_NETWORKING 35 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 36 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 37 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 39 40 $(PROJECT_INCLUDE)/rtems/pty.h: pty.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 41 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/pty.h 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/pty.h 43 44 $(PROJECT_INCLUDE)/rtems/telnetd.h: telnetd.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 45 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/telnetd.h 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/telnetd.h 47 endif 48 42 49 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.