Changeset 93379eb in rtems
- Timestamp:
- 06/08/01 13:38:08 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a1c34a9c
- Parents:
- 622a429
- Location:
- c/src/lib/libbsp/unix/posix
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/unix/posix/ChangeLog
r622a429 r93379eb 1 2001-05-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: Add bspopts.h. 4 * include/.cvsignore: Add bspopts.h*, stamp-h*, coverhd.h. 5 * include/Makefile.am: Use *_HEADERS instead of *H_FILES. 6 * include/bsp.h: Include bspopts.h. 7 1 8 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/lib/libbsp/unix/posix/configure.in
r622a429 r93379eb 35 35 AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes") 36 36 37 AM_CONFIG_HEADER(include/bspopts.h) 37 38 RTEMS_PROJECT_ROOT 38 39 -
c/src/lib/libbsp/unix/posix/include/.cvsignore
r622a429 r93379eb 1 1 Makefile 2 2 Makefile.in 3 bspopts.h 4 bspopts.h.in 5 coverhd.h 6 stamp-h 7 stamp-h.in -
c/src/lib/libbsp/unix/posix/include/Makefile.am
r622a429 r93379eb 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 H_FILES = bsp.h7 include_HEADERS = bsp.h bspopts.h 8 8 9 9 $(PROJECT_INCLUDE): … … 13 13 $(INSTALL_DATA) $< $@ 14 14 15 $(PROJECT_INCLUDE)/coverhd.h: $(srcdir)/../../../shared/include/coverhd.h 16 $(INSTALL_DATA) $< $@ 15 coverhd.h: $(top_srcdir)/../../shared/include/coverhd.h 16 cp $< $@ 17 CLEANFILES += coverhd.h 17 18 18 TMPINSTALL_FILES += $(PROJECT_INCLUDE) $(H_FILES:%.h=$(PROJECT_INCLUDE)/%.h) \ 19 $(PROJECT_INCLUDE)/coverhd.h 19 TMPINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) 20 20 21 21 all-local: $(TMPINSTALL_FILES) 22 22 23 EXTRA_DIST = bsp.h24 25 23 include $(top_srcdir)/../../../../../../automake/local.am -
c/src/lib/libbsp/unix/posix/include/bsp.h
r622a429 r93379eb 19 19 extern "C" { 20 20 #endif 21 22 #include <bspopts.h> 21 23 22 24 #include <rtems.h>
Note: See TracChangeset
for help on using the changeset viewer.