Changeset 74066232 in rtems
- Timestamp:
- 12/01/03 08:43:12 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 66851179
- Parents:
- 7ed1e747
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libnetworking/ChangeLog
r7ed1e747 r74066232 1 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Reformat. Apply dirstamps to preinstallation. 4 * pppd/Makefile.am: Ditto. 5 * rtems_servers/Makefile.am: Ditto. 6 * rtems_telnetd/Makefile.am: Ditto. 7 * rtems_webserver/Makefile.am: Ditto. 8 * wrapup/Makefile.am: Ditto. 9 1 10 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 11 -
c/src/libnetworking/Makefile.am
r7ed1e747 r74066232 5 5 SUBDIRS = rtems_servers pppd rtems_telnetd rtems_webserver wrapup 6 6 7 PREINSTALL_FILES = 8 7 9 include $(top_srcdir)/automake/subdirs.am 8 10 include $(top_srcdir)/automake/local.am -
c/src/libnetworking/pppd/Makefile.am
r7ed1e747 r74066232 29 29 .PRECIOUS: $(LIB) 30 30 31 EXTRA_DIST = auth.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h \32 chat.c demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c ipxcp.h\33 lcp.c lcp.h magic.c magic.h md4.c md4.h md5.c md5.h options.c\34 patchlevel.h pathnames.h pppd.h rtemsdialer.h rtemsmain.c rtemspppd.c \35 rtemspppd.h sys-rtems.cupap.c upap.h utils.c31 EXTRA_DIST = auth.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c \ 32 demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c ipxcp.h lcp.c lcp.h magic.c \ 33 magic.h md4.c md4.h md5.c md5.h options.c patchlevel.h pathnames.h \ 34 pppd.h rtemsdialer.h rtemsmain.c rtemspppd.c rtemspppd.h sys-rtems.c \ 35 upap.c upap.h utils.c 36 36 37 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)37 PREINSTALL_FILES = 38 38 39 $(PROJECT_INCLUDE)/%.h: %.h 40 $(INSTALL_DATA) $< $@ 39 $(PROJECT_INCLUDE)/$(dirstamp): 40 @$(mkinstalldirs) $(PROJECT_INCLUDE) 41 @: > $(PROJECT_INCLUDE)/$(dirstamp) 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 43 44 if HAS_NETWORKING 45 $(PROJECT_INCLUDE)/rtemspppd.h: rtemspppd.h $(PROJECT_INCLUDE)/$(dirstamp) 46 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtemspppd.h 47 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtemspppd.h 48 49 $(PROJECT_INCLUDE)/rtemsdialer.h: rtemsdialer.h $(PROJECT_INCLUDE)/$(dirstamp) 50 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtemsdialer.h 51 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtemsdialer.h 52 endif 41 53 42 54 include $(top_srcdir)/automake/local.am -
c/src/libnetworking/rtems_servers/Makefile.am
r7ed1e747 r74066232 33 33 .PRECIOUS: $(LIB) 34 34 35 PREINSTALL_FILES = $(PROJECT_INCLUDE) \ 36 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \ 37 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 PREINSTALL_FILES = 38 36 39 $(PROJECT_INCLUDE)/%.h: %.h 40 $(INSTALL_DATA) $< $@ 41 $(PROJECT_INCLUDE)/rtems: 42 @$(mkinstalldirs) $@ 43 $(PROJECT_INCLUDE)/rtems/%.h: %.h 44 $(INSTALL_DATA) $< $@ 37 $(PROJECT_INCLUDE)/$(dirstamp): 38 @$(mkinstalldirs) $(PROJECT_INCLUDE) 39 @: > $(PROJECT_INCLUDE)/$(dirstamp) 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 41 42 if HAS_NETWORKING 43 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 44 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 45 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 47 48 $(PROJECT_INCLUDE)/ftpd.h: ftpd.h $(PROJECT_INCLUDE)/$(dirstamp) 49 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ftpd.h 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ftpd.h 51 endif 45 52 46 53 include $(top_srcdir)/automake/local.am -
c/src/libnetworking/rtems_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 -
c/src/libnetworking/rtems_webserver/Makefile.am
r7ed1e747 r74066232 6 6 LIB = $(ARCH)/$(LIBNAME) 7 7 8 C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c \9 h .c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c \10 sock .c socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \8 C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c h.c \ 9 handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c sock.c \ 10 socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \ 11 11 websuemf.c webmain.c 12 12 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 14 H_FILES = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h wsIntrn.h15 13 16 14 include $(top_srcdir)/automake/compile.am … … 26 24 $(make-library) 27 25 28 $(PROJECT_INCLUDE):29 $(mkinstalldirs) $@30 31 $(PROJECT_INCLUDE)/goahead:32 $(mkinstalldirs) $@33 34 $(PROJECT_INCLUDE)/goahead/%.h: %.h35 $(INSTALL_DATA) $< $@36 37 $(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h38 $(INSTALL_DATA) $< $@39 40 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems_webserver.h \41 $(PROJECT_INCLUDE)/goahead $(H_FILES:%.h=$(PROJECT_INCLUDE)/goahead/%.h)42 43 26 if HAS_NETWORKING 44 27 if HAS_POSIX … … 46 29 47 30 include_HEADERS = rtems_webserver.h 48 include_goahead_HEADERS = $(H_FILES) 31 include_goahead_HEADERS = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h \ 32 wsIntrn.h 49 33 50 34 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) … … 56 40 EXTRA_DIST = asp.c balloc.c default.c ej.h ejlex.c ejparse.c form.c h.c \ 57 41 handler.c mime.c misc.c ringq.c rom.c rtems_webserver.h security.c \ 58 sock.c socket.c sym.c uemf.c uemf.h um.h url.c value.c wbase64.c webcomp.c \ 59 webmain.c webpage.c webrom.c webs.c webs.h websuemf.c wsIntrn.h 42 sock.c socket.c sym.c uemf.c uemf.h um.h url.c value.c wbase64.c \ 43 webcomp.c webmain.c webpage.c webrom.c webs.c webs.h websuemf.c \ 44 wsIntrn.h 45 46 PREINSTALL_FILES = 47 48 $(PROJECT_INCLUDE)/$(dirstamp): 49 @$(mkinstalldirs) $(PROJECT_INCLUDE) 50 @: > $(PROJECT_INCLUDE)/$(dirstamp) 51 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 52 53 if HAS_NETWORKING 54 if HAS_POSIX 55 $(PROJECT_INCLUDE)/goahead/$(dirstamp): 56 @$(mkinstalldirs) $(PROJECT_INCLUDE)/goahead 57 @: > $(PROJECT_INCLUDE)/goahead/$(dirstamp) 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/$(dirstamp) 59 60 $(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h $(PROJECT_INCLUDE)/$(dirstamp) 61 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems_webserver.h 62 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems_webserver.h 63 64 $(PROJECT_INCLUDE)/goahead/ej.h: ej.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 65 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/ej.h 66 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/ej.h 67 68 $(PROJECT_INCLUDE)/goahead/ejIntrn.h: ejIntrn.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 69 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/ejIntrn.h 70 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/ejIntrn.h 71 72 $(PROJECT_INCLUDE)/goahead/emfdb.h: emfdb.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 73 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/emfdb.h 74 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/emfdb.h 75 76 $(PROJECT_INCLUDE)/goahead/md5.h: md5.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 77 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/md5.h 78 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/md5.h 79 80 $(PROJECT_INCLUDE)/goahead/uemf.h: uemf.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 81 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/uemf.h 82 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/uemf.h 83 84 $(PROJECT_INCLUDE)/goahead/um.h: um.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 85 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/um.h 86 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/um.h 87 88 $(PROJECT_INCLUDE)/goahead/webs.h: webs.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 89 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/webs.h 90 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/webs.h 91 92 $(PROJECT_INCLUDE)/goahead/wsIntrn.h: wsIntrn.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 93 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/wsIntrn.h 94 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/wsIntrn.h 95 endif 96 endif 60 97 61 98 include $(top_srcdir)/automake/local.am -
c/src/libnetworking/wrapup/Makefile.am
r7ed1e747 r74066232 2 2 ## $Id$ 3 3 ## 4 5 4 6 5 if HAS_POSIX … … 8 7 endif 9 8 10 NET_O_PIECES = rtems_servers \ 11 rtems_telnetd pppd $(POSIX_PIECES) 9 NET_O_PIECES = rtems_servers rtems_telnetd pppd $(POSIX_PIECES) 12 10 OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) 13 11 LIB = $(ARCH)/libnetapps.a … … 27 25 endif 28 26 27 PREINSTALL_FILES = 28 29 29 include $(top_srcdir)/automake/local.am -
cpukit/ftpd/Makefile.am
r7ed1e747 r74066232 33 33 .PRECIOUS: $(LIB) 34 34 35 PREINSTALL_FILES = $(PROJECT_INCLUDE) \ 36 $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \ 37 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%) 35 PREINSTALL_FILES = 38 36 39 $(PROJECT_INCLUDE)/%.h: %.h 40 $(INSTALL_DATA) $< $@ 41 $(PROJECT_INCLUDE)/rtems: 42 @$(mkinstalldirs) $@ 43 $(PROJECT_INCLUDE)/rtems/%.h: %.h 44 $(INSTALL_DATA) $< $@ 37 $(PROJECT_INCLUDE)/$(dirstamp): 38 @$(mkinstalldirs) $(PROJECT_INCLUDE) 39 @: > $(PROJECT_INCLUDE)/$(dirstamp) 40 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 41 42 if HAS_NETWORKING 43 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 44 @$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems 45 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 46 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 47 48 $(PROJECT_INCLUDE)/ftpd.h: ftpd.h $(PROJECT_INCLUDE)/$(dirstamp) 49 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ftpd.h 50 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ftpd.h 51 endif 45 52 46 53 include $(top_srcdir)/automake/local.am -
cpukit/httpd/Makefile.am
r7ed1e747 r74066232 6 6 LIB = $(ARCH)/$(LIBNAME) 7 7 8 C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c \9 h .c handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c \10 sock .c socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \8 C_FILES = asp.c balloc.c default.c ejlex.c ejparse.c emfdb.c form.c h.c \ 9 handler.c md5c.c mime.c misc.c webpage.c ringq.c rom.c security.c sock.c \ 10 socket.c sym.c uemf.c um.c url.c value.c wbase64.c webrom.c webs.c \ 11 11 websuemf.c webmain.c 12 12 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 14 H_FILES = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h wsIntrn.h15 13 16 14 include $(top_srcdir)/automake/compile.am … … 26 24 $(make-library) 27 25 28 $(PROJECT_INCLUDE):29 $(mkinstalldirs) $@30 31 $(PROJECT_INCLUDE)/goahead:32 $(mkinstalldirs) $@33 34 $(PROJECT_INCLUDE)/goahead/%.h: %.h35 $(INSTALL_DATA) $< $@36 37 $(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h38 $(INSTALL_DATA) $< $@39 40 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems_webserver.h \41 $(PROJECT_INCLUDE)/goahead $(H_FILES:%.h=$(PROJECT_INCLUDE)/goahead/%.h)42 43 26 if HAS_NETWORKING 44 27 if HAS_POSIX … … 46 29 47 30 include_HEADERS = rtems_webserver.h 48 include_goahead_HEADERS = $(H_FILES) 31 include_goahead_HEADERS = ej.h ejIntrn.h emfdb.h md5.h uemf.h um.h webs.h \ 32 wsIntrn.h 49 33 50 34 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) … … 56 40 EXTRA_DIST = asp.c balloc.c default.c ej.h ejlex.c ejparse.c form.c h.c \ 57 41 handler.c mime.c misc.c ringq.c rom.c rtems_webserver.h security.c \ 58 sock.c socket.c sym.c uemf.c uemf.h um.h url.c value.c wbase64.c webcomp.c \ 59 webmain.c webpage.c webrom.c webs.c webs.h websuemf.c wsIntrn.h 42 sock.c socket.c sym.c uemf.c uemf.h um.h url.c value.c wbase64.c \ 43 webcomp.c webmain.c webpage.c webrom.c webs.c webs.h websuemf.c \ 44 wsIntrn.h 45 46 PREINSTALL_FILES = 47 48 $(PROJECT_INCLUDE)/$(dirstamp): 49 @$(mkinstalldirs) $(PROJECT_INCLUDE) 50 @: > $(PROJECT_INCLUDE)/$(dirstamp) 51 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 52 53 if HAS_NETWORKING 54 if HAS_POSIX 55 $(PROJECT_INCLUDE)/goahead/$(dirstamp): 56 @$(mkinstalldirs) $(PROJECT_INCLUDE)/goahead 57 @: > $(PROJECT_INCLUDE)/goahead/$(dirstamp) 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/$(dirstamp) 59 60 $(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h $(PROJECT_INCLUDE)/$(dirstamp) 61 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems_webserver.h 62 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems_webserver.h 63 64 $(PROJECT_INCLUDE)/goahead/ej.h: ej.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 65 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/ej.h 66 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/ej.h 67 68 $(PROJECT_INCLUDE)/goahead/ejIntrn.h: ejIntrn.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 69 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/ejIntrn.h 70 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/ejIntrn.h 71 72 $(PROJECT_INCLUDE)/goahead/emfdb.h: emfdb.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 73 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/emfdb.h 74 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/emfdb.h 75 76 $(PROJECT_INCLUDE)/goahead/md5.h: md5.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 77 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/md5.h 78 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/md5.h 79 80 $(PROJECT_INCLUDE)/goahead/uemf.h: uemf.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 81 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/uemf.h 82 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/uemf.h 83 84 $(PROJECT_INCLUDE)/goahead/um.h: um.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 85 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/um.h 86 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/um.h 87 88 $(PROJECT_INCLUDE)/goahead/webs.h: webs.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 89 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/webs.h 90 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/webs.h 91 92 $(PROJECT_INCLUDE)/goahead/wsIntrn.h: wsIntrn.h $(PROJECT_INCLUDE)/goahead/$(dirstamp) 93 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/goahead/wsIntrn.h 94 PREINSTALL_FILES += $(PROJECT_INCLUDE)/goahead/wsIntrn.h 95 endif 96 endif 60 97 61 98 include $(top_srcdir)/automake/local.am -
cpukit/pppd/Makefile.am
r7ed1e747 r74066232 29 29 .PRECIOUS: $(LIB) 30 30 31 EXTRA_DIST = auth.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h \32 chat.c demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c ipxcp.h\33 lcp.c lcp.h magic.c magic.h md4.c md4.h md5.c md5.h options.c\34 patchlevel.h pathnames.h pppd.h rtemsdialer.h rtemsmain.c rtemspppd.c \35 rtemspppd.h sys-rtems.cupap.c upap.h utils.c31 EXTRA_DIST = auth.c ccp.c ccp.h chap.c chap.h chap_ms.c chap_ms.h chat.c \ 32 demand.c fsm.c fsm.h ipcp.c ipcp.h ipxcp.c ipxcp.h lcp.c lcp.h magic.c \ 33 magic.h md4.c md4.h md5.c md5.h options.c patchlevel.h pathnames.h \ 34 pppd.h rtemsdialer.h rtemsmain.c rtemspppd.c rtemspppd.h sys-rtems.c \ 35 upap.c upap.h utils.c 36 36 37 PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)37 PREINSTALL_FILES = 38 38 39 $(PROJECT_INCLUDE)/%.h: %.h 40 $(INSTALL_DATA) $< $@ 39 $(PROJECT_INCLUDE)/$(dirstamp): 40 @$(mkinstalldirs) $(PROJECT_INCLUDE) 41 @: > $(PROJECT_INCLUDE)/$(dirstamp) 42 PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp) 43 44 if HAS_NETWORKING 45 $(PROJECT_INCLUDE)/rtemspppd.h: rtemspppd.h $(PROJECT_INCLUDE)/$(dirstamp) 46 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtemspppd.h 47 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtemspppd.h 48 49 $(PROJECT_INCLUDE)/rtemsdialer.h: rtemsdialer.h $(PROJECT_INCLUDE)/$(dirstamp) 50 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtemsdialer.h 51 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtemsdialer.h 52 endif 41 53 42 54 include $(top_srcdir)/automake/local.am -
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.