Skip to content

Commit

Permalink
import
Browse files Browse the repository at this point in the history
  • Loading branch information
maniacbug committed Dec 25, 2011
1 parent 99f1542 commit fb2130e
Show file tree
Hide file tree
Showing 114 changed files with 20,221 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
16000000/
.*.swp
*.orig
*.bak
version.h
29 changes: 29 additions & 0 deletions Jamfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
UCLIBCPP_DIR = $(HOME)/Source/uClibc++ ;

rule FixCopy
{
Depends $(<) : $(>) ;
Clean clean : $(<) ;
Depends all : $(<) ;
}

actions FixCopy
{
sed -e "s/<utility>/<utility.h>/g" $(>) > $(<)
}

for file in [ GLOB $(UCLIBCPP_DIR)/include : [^.]* ]
{
local _o = $(file:D=$(PWD)) ;
if ( $(file:B) = "utility" )
{
_o = $(_o:S=.h) ;
}
FixCopy $(_o) : $(file) ;
}

for file in [ GLOB $(UCLIBCPP_DIR)/src : *.cpp ]
{
local _o = $(file:D=$(PWD)) ;
FixCopy $(_o) : $(file) ;
}
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
TOPDIR=../
include $(TOPDIR)Rules.mak

all:

clean:

distclean:

HEADERS = $(filter-out .svn CVS Makefile,$(wildcard *))
install:
$(INSTALL) -d $(PREFIX)$(UCLIBCXX_RUNTIME_INCLUDEDIR)
$(INSTALL) -m 644 $(HEADERS) $(PREFIX)$(UCLIBCXX_RUNTIME_INCLUDEDIR)
Empty file added StandardCplusplus.h
Empty file.
Loading

0 comments on commit fb2130e

Please sign in to comment.