Skip to content

Commit fb2130e

Browse files
committed
import
1 parent 99f1542 commit fb2130e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+20221
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
16000000/
2+
.*.swp
3+
*.orig
4+
*.bak
5+
version.h

Jamfile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
UCLIBCPP_DIR = $(HOME)/Source/uClibc++ ;
2+
3+
rule FixCopy
4+
{
5+
Depends $(<) : $(>) ;
6+
Clean clean : $(<) ;
7+
Depends all : $(<) ;
8+
}
9+
10+
actions FixCopy
11+
{
12+
sed -e "s/<utility>/<utility.h>/g" $(>) > $(<)
13+
}
14+
15+
for file in [ GLOB $(UCLIBCPP_DIR)/include : [^.]* ]
16+
{
17+
local _o = $(file:D=$(PWD)) ;
18+
if ( $(file:B) = "utility" )
19+
{
20+
_o = $(_o:S=.h) ;
21+
}
22+
FixCopy $(_o) : $(file) ;
23+
}
24+
25+
for file in [ GLOB $(UCLIBCPP_DIR)/src : *.cpp ]
26+
{
27+
local _o = $(file:D=$(PWD)) ;
28+
FixCopy $(_o) : $(file) ;
29+
}

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
TOPDIR=../
2+
include $(TOPDIR)Rules.mak
3+
4+
all:
5+
6+
clean:
7+
8+
distclean:
9+
10+
HEADERS = $(filter-out .svn CVS Makefile,$(wildcard *))
11+
install:
12+
$(INSTALL) -d $(PREFIX)$(UCLIBCXX_RUNTIME_INCLUDEDIR)
13+
$(INSTALL) -m 644 $(HEADERS) $(PREFIX)$(UCLIBCXX_RUNTIME_INCLUDEDIR)

StandardCplusplus.h

Whitespace-only changes.

0 commit comments

Comments
 (0)