add rscons

This commit is contained in:
Josh Holtrop 2020-02-09 22:06:19 -05:00
commit 4b7ead8706
4 changed files with 32 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/.rscons*
/build/

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
.PHONY: all
all:
@./rscons
.PHONY: clean
clean:
@./rscons clean

2
configure vendored Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec ./rscons configure "$@"

21
rscons Executable file

File diff suppressed because one or more lines are too long