feat: ocs makefile

This commit is contained in:
zhangsz
2025-03-05 16:31:50 +08:00
parent 2617147be4
commit 22694d6b9e
2 changed files with 12 additions and 9 deletions

3
.gitignore vendored
View File

@@ -69,6 +69,9 @@ dkms.conf
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# log files
*.log
# Dependency directories (remove the comment below to include it)
# vendor/

View File

@@ -2,17 +2,17 @@ src_dir=`pwd`
.PHONY: all clean
all: pncc_rel
all: pncc
clean: plat_clean mss_clean
norfolk_rel: plat_all norfolk
# norfolk_rel: plat_all norfolk
cook_rel: plat_all cook
# cook_rel: plat_all cook
zed_rel: plat_all zed
# zed_rel: plat_all zed
pncc_rel: plat_all pncc
# pncc_rel: plat_all pncc
plat_clean:
$(MAKE) -C plat clean
@@ -20,16 +20,16 @@ plat_clean:
mss_clean:
$(MAKE) -C mss clean
pncc:
pncc: plat_all
$(MAKE) -C mss pncc
norfolk:
norfolk: plat_all
$(MAKE) -C mss norfolk
cook:
cook: plat_all
$(MAKE) -C mss cook
zed:
zed: plat_all
$(MAKE) -C mss zed
plat_all: