Integrate all the progress into master #6
|
@ -23,6 +23,18 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "build assets",
|
||||
"type": "shell",
|
||||
"command": "wsl make ${input:target} BUILD_PROFILE=${input:build profile} JABY_ENGINE_DIR=$(wslpath ${env:JABY_ENGINE_PATH})",
|
||||
"group": "build",
|
||||
"options": {
|
||||
"cwd": "assets",
|
||||
"env": {
|
||||
"PATH": "${env:JABY_ENGINE_PATH}/bin;${env:PATH}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "cdgen",
|
||||
"type": "shell",
|
||||
|
|
|
@ -87,10 +87,7 @@ $(OUTPUT_DIR)/%.o: $$(subst !super,..,%.s)
|
|||
@mkdir -p $(dir $@)
|
||||
$(CC) $(ARCHFLAGS) -I$(PCSX_REDUX) -g -c -o $@ $<
|
||||
|
||||
#Rules section for default compilation and linking
|
||||
rebuild:
|
||||
$(MAKE) clean
|
||||
$(MAKE) all
|
||||
include $(SELF_DIR)RebuildTarget.mk
|
||||
|
||||
#Inclusion of dependencies (object files to source and includes)
|
||||
-include $(OBJS:%.o=%.d)
|
|
@ -0,0 +1,3 @@
|
|||
rebuild:
|
||||
$(MAKE) clean
|
||||
$(MAKE) all
|
Loading…
Reference in New Issue