mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Add some stubs and a makefile
This commit is contained in:
parent
ce30d4520d
commit
783455f684
7 changed files with 44 additions and 0 deletions
15
Makefile.in
Normal file
15
Makefile.in
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
RUSTC?=rustc
|
||||||
|
RUSTFLAGS?=
|
||||||
|
|
||||||
|
VPATH=%VPATH%
|
||||||
|
|
||||||
|
all: servo
|
||||||
|
|
||||||
|
servo: src/servo.rc
|
||||||
|
$(RUSTC) $(RUSTFLAGS) -o $@ $^
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f servo
|
||||||
|
|
4
configure
vendored
Executable file
4
configure
vendored
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
sed "s/%VPATH%/`dirname $0`/" `dirname $0`/Makefile.in > Makefile
|
||||||
|
|
0
src/dom/base.rs
Normal file
0
src/dom/base.rs
Normal file
0
src/dom/rcu.rs
Normal file
0
src/dom/rcu.rs
Normal file
0
src/layout/base.rs
Normal file
0
src/layout/base.rs
Normal file
21
src/servo.rc
Executable file
21
src/servo.rc
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
#[link(name = "servo",
|
||||||
|
vers = "0.1",
|
||||||
|
uuid = "637ffc98-9058-471d-9de7-abfc49ef0549",
|
||||||
|
url = "http://servo.org/")];
|
||||||
|
|
||||||
|
#[comment = "The Servo Parallel Browser Project"];
|
||||||
|
#[license = "MPL"];
|
||||||
|
|
||||||
|
mod dom {
|
||||||
|
mod base;
|
||||||
|
mod rcu;
|
||||||
|
}
|
||||||
|
|
||||||
|
mod layout {
|
||||||
|
mod base;
|
||||||
|
}
|
||||||
|
|
||||||
|
mod widget {
|
||||||
|
mod base;
|
||||||
|
}
|
||||||
|
|
4
src/widget/base.rs
Normal file
4
src/widget/base.rs
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
fn main() {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue