summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-10-08 14:42:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-10-08 14:42:08 +0000
commita2016b9965a4de47b0bac9013b1c4f9f867235f7 (patch)
treeab278df5dac0efc5f8cf1950de236dfed894f2f0 /c/src/exec/posix
parentUpdated information on building your own application. (diff)
downloadrtems-a2016b9965a4de47b0bac9013b1c4f9f867235f7.tar.bz2
Removed include directory at "build" point and the link of this directory
to lib/include. Went to using a PROJECT_INCLUDE variable.
Diffstat (limited to 'c/src/exec/posix')
-rw-r--r--c/src/exec/posix/base/Makefile.in2
-rw-r--r--c/src/exec/posix/headers/Makefile.in2
-rw-r--r--c/src/exec/posix/include/rtems/posix/Makefile.in2
-rw-r--r--c/src/exec/posix/include/sys/Makefile.in2
-rw-r--r--c/src/exec/posix/include/wrap/Makefile.in2
-rw-r--r--c/src/exec/posix/inline/Makefile.in2
-rw-r--r--c/src/exec/posix/inline/rtems/posix/Makefile.in2
-rw-r--r--c/src/exec/posix/macros/Makefile.in2
-rw-r--r--c/src/exec/posix/macros/rtems/posix/Makefile.in2
-rw-r--r--c/src/exec/posix/optman/Makefile.in2
-rw-r--r--c/src/exec/posix/sys/Makefile.in2
11 files changed, 11 insertions, 11 deletions
diff --git a/c/src/exec/posix/base/Makefile.in b/c/src/exec/posix/base/Makefile.in
index d11541a321..8d81713abb 100644
--- a/c/src/exec/posix/base/Makefile.in
+++ b/c/src/exec/posix/base/Makefile.in
@@ -30,4 +30,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/
+ $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)
diff --git a/c/src/exec/posix/headers/Makefile.in b/c/src/exec/posix/headers/Makefile.in
index 7769a4cada..f29a1fdac2 100644
--- a/c/src/exec/posix/headers/Makefile.in
+++ b/c/src/exec/posix/headers/Makefile.in
@@ -30,4 +30,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/rtems/posix
+ $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/posix
diff --git a/c/src/exec/posix/include/rtems/posix/Makefile.in b/c/src/exec/posix/include/rtems/posix/Makefile.in
index 7769a4cada..f29a1fdac2 100644
--- a/c/src/exec/posix/include/rtems/posix/Makefile.in
+++ b/c/src/exec/posix/include/rtems/posix/Makefile.in
@@ -30,4 +30,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/rtems/posix
+ $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/rtems/posix
diff --git a/c/src/exec/posix/include/sys/Makefile.in b/c/src/exec/posix/include/sys/Makefile.in
index 84d2003ba3..9d1a660d31 100644
--- a/c/src/exec/posix/include/sys/Makefile.in
+++ b/c/src/exec/posix/include/sys/Makefile.in
@@ -27,4 +27,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/sys
+ $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/sys
diff --git a/c/src/exec/posix/include/wrap/Makefile.in b/c/src/exec/posix/include/wrap/Makefile.in
index d11541a321..8d81713abb 100644
--- a/c/src/exec/posix/include/wrap/Makefile.in
+++ b/c/src/exec/posix/include/wrap/Makefile.in
@@ -30,4 +30,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/
+ $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)
diff --git a/c/src/exec/posix/inline/Makefile.in b/c/src/exec/posix/inline/Makefile.in
index a68a481925..18ee75ee73 100644
--- a/c/src/exec/posix/inline/Makefile.in
+++ b/c/src/exec/posix/inline/Makefile.in
@@ -27,4 +27,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${I_FILES} ${PROJECT_RELEASE}/include/rtems/posix
+ $(INSTALL) -m 444 ${I_FILES} $(PROJECT_INCLUDE)/rtems/posix
diff --git a/c/src/exec/posix/inline/rtems/posix/Makefile.in b/c/src/exec/posix/inline/rtems/posix/Makefile.in
index a68a481925..18ee75ee73 100644
--- a/c/src/exec/posix/inline/rtems/posix/Makefile.in
+++ b/c/src/exec/posix/inline/rtems/posix/Makefile.in
@@ -27,4 +27,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${I_FILES} ${PROJECT_RELEASE}/include/rtems/posix
+ $(INSTALL) -m 444 ${I_FILES} $(PROJECT_INCLUDE)/rtems/posix
diff --git a/c/src/exec/posix/macros/Makefile.in b/c/src/exec/posix/macros/Makefile.in
index 127eec1a58..1c59991a36 100644
--- a/c/src/exec/posix/macros/Makefile.in
+++ b/c/src/exec/posix/macros/Makefile.in
@@ -28,4 +28,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- #$(INSTALL) -m 444 ${I_FILES} ${PROJECT_RELEASE}/include/rtems/posix
+ #$(INSTALL) -m 444 ${I_FILES} $(PROJECT_INCLUDE)/rtems/posix
diff --git a/c/src/exec/posix/macros/rtems/posix/Makefile.in b/c/src/exec/posix/macros/rtems/posix/Makefile.in
index 127eec1a58..1c59991a36 100644
--- a/c/src/exec/posix/macros/rtems/posix/Makefile.in
+++ b/c/src/exec/posix/macros/rtems/posix/Makefile.in
@@ -28,4 +28,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- #$(INSTALL) -m 444 ${I_FILES} ${PROJECT_RELEASE}/include/rtems/posix
+ #$(INSTALL) -m 444 ${I_FILES} $(PROJECT_INCLUDE)/rtems/posix
diff --git a/c/src/exec/posix/optman/Makefile.in b/c/src/exec/posix/optman/Makefile.in
index 6d99022a3a..a24ed8c43c 100644
--- a/c/src/exec/posix/optman/Makefile.in
+++ b/c/src/exec/posix/optman/Makefile.in
@@ -27,7 +27,7 @@ DEFINES +=
CPPFLAGS +=
CFLAGS += $(CFLAGS_OS_V)
-ASM4FLAGS += -I $(PROJECT_RELEASE)/include/rtems
+ASM4FLAGS += -I $(PROJECT_INCLUDE)/rtems
LD_PATHS +=
LD_LIBS +=
LDFLAGS +=
diff --git a/c/src/exec/posix/sys/Makefile.in b/c/src/exec/posix/sys/Makefile.in
index 84d2003ba3..9d1a660d31 100644
--- a/c/src/exec/posix/sys/Makefile.in
+++ b/c/src/exec/posix/sys/Makefile.in
@@ -27,4 +27,4 @@ CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS +=
all: $(SRCS)
- $(INSTALL) -m 444 ${H_FILES} ${PROJECT_RELEASE}/include/sys
+ $(INSTALL) -m 444 ${H_FILES} $(PROJECT_INCLUDE)/sys