Changeset f26145b in rtems for cpukit/ftpd
- Timestamp:
- Feb 4, 2005, 12:40:16 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4bf6a9f2
- Parents:
- f26a9760
- Location:
- cpukit/ftpd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ftpd/Makefile.am
rf26a9760 rf26145b 5 5 include $(top_srcdir)/automake/compile.am 6 6 7 noinst_LIBRARIES = 7 if HAS_NETWORKING 8 include_rtemsdir = $(includedir)/rtems 9 include_rtems_HEADERS = ftpd.h 8 10 9 if HAS_NETWORKING 10 include_HEADERS = ftpd.h 11 12 noinst_LIBRARIES += libftpd.a 11 project_lib_LIBRARIES = libftpd.a 13 12 libftpd_a_SOURCES = ftpd.c ftpd.h 14 13 libftpd_a_CPPFLAGS = $(AM_CPPFLAGS) … … 19 18 PREINSTALL_DIRS = 20 19 PREINSTALL_FILES = 20 TMPINSTALL_FILES = 21 21 22 $(PROJECT_ INCLUDE)/$(dirstamp):23 @$(mkdir_p) $(PROJECT_ INCLUDE)24 @: > $(PROJECT_ INCLUDE)/$(dirstamp)25 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/$(dirstamp)22 $(PROJECT_LIB)/$(dirstamp): 23 @$(mkdir_p) $(PROJECT_LIB) 24 @: > $(PROJECT_LIB)/$(dirstamp) 25 TMPINSTALL_FILES += $(PROJECT_LIB)/$(dirstamp) 26 26 27 27 if HAS_NETWORKING 28 $(PROJECT_INCLUDE)/ftpd.h: ftpd.h $(PROJECT_INCLUDE)/$(dirstamp) 29 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ftpd.h 30 PREINSTALL_FILES += $(PROJECT_INCLUDE)/ftpd.h 28 $(PROJECT_INCLUDE)/rtems/$(dirstamp): 29 @$(mkdir_p) $(PROJECT_INCLUDE)/rtems 30 @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp) 31 PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp) 32 33 $(PROJECT_INCLUDE)/rtems/ftpd.h: ftpd.h $(PROJECT_INCLUDE)/rtems/$(dirstamp) 34 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/ftpd.h 35 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ftpd.h 36 37 $(PROJECT_LIB)/libftpd.a: libftpd.a $(PROJECT_LIB)/$(dirstamp) 38 $(INSTALL_DATA) $< $(PROJECT_LIB)/libftpd.a 39 TMPINSTALL_FILES += $(PROJECT_LIB)/libftpd.a 31 40 endif 32 41 33 42 CLEANFILES = $(PREINSTALL_FILES) 34 43 DISTCLEANFILES = $(PREINSTALL_DIRS) 44 CLEANFILES += $(TMPINSTALL_FILES) 35 45 36 46 include $(top_srcdir)/automake/local.am -
cpukit/ftpd/ftpd.h
rf26a9760 rf26145b 5 5 */ 6 6 7 #ifndef _ _FTPD_H__8 #define _ _FTPD_H__7 #ifndef _RTEMS_FTPD_H 8 #define _RTEMS_FTPD_H 9 9 10 10 … … 54 54 int rtems_initialize_ftpd(); 55 55 56 #endif /* _ _FTPD_H__*/56 #endif /* _RTEMS_FTPD_H */
Note: See TracChangeset
for help on using the changeset viewer.