File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 26
26
java-version : ' 21'
27
27
28
28
- name : Run Makefile to compile program
29
- run : make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29
+ run : make project=Cataphract all
30
30
31
31
- name : Upload the Build Artefacts
32
32
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 26
26
java-version : ' 21'
27
27
28
28
- name : Run Makefile to compile program
29
- run : make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29
+ run : make project=Cataphract all
30
30
31
31
- name : Upload the Build Artefacts
32
32
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 26
26
java-version : ' 21'
27
27
28
28
- name : Run Makefile to compile program
29
- run : make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29
+ run : make project=Cataphract all
30
30
31
31
- name : Upload the Build Artefacts
32
32
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 26
26
java-version : ' 21'
27
27
28
28
- name : Run Makefile to compile program
29
- run : make project=Cataphract kernel 2>&1 | tee CompileLogs/Compile.log
29
+ run : make project=Cataphract all
30
30
31
31
- name : Upload the Build Artefacts
32
32
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -33,7 +33,10 @@ BIN_CLASSPATH = ./Binaries
33
33
.PHONY : all setup kernel launcher docs sign clean
34
34
35
35
# Build steps
36
- all : setup kernel launcher docs sign
36
+ all : setup kernel launcher sign
37
+
38
+ # Super Build (includes documentations)
39
+ super : setup kernel launcher sign docs
37
40
38
41
# Preliminary setup
39
42
setup :
64
67
@echo " "
65
68
66
69
# Compilation targets
67
- kernel : setup launcher sign
70
+ kernel : setup
68
71
@echo " [*] Compiling Program..."
69
72
@echo " "
70
73
javac -cp $(CLASSPATH ) -d $(BIN_DIR ) $(SRC_DIR ) /$(PROJECT_NAME ) /Core/Loader.java
You can’t perform that action at this time.
0 commit comments