We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2832df1 commit 4fbe204Copy full SHA for 4fbe204
.travis.yml
@@ -0,0 +1,14 @@
1
+language: c
2
+
3
+compiler:
4
+ - clang
5
+ - gcc
6
7
+addons:
8
+ apt:
9
+ update: true
10
11
+before_install:
12
+ - sudo apt-get -y install nasm
13
14
+script: make
Makefile
@@ -20,4 +20,4 @@ $(bt_stage1): $(BL_SRC_DIR)/stage1.asm $(BL_SRC_DIR)/constants.asm $(BL_SRC_DIR)
20
nasm -o $@ -f bin -i $(BL_SRC_DIR)/ $<
21
22
clean:
23
- rm $(BUILD_DIR)/*
+ rm -f $(image_vmdk) $(bt_stage1)
build/README.md
@@ -0,0 +1 @@
+Default build directory
0 commit comments