add Makefile.watcom
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-05 03:45:08 +09:00
commit de036d46aa
3 changed files with 11 additions and 5 deletions

2
Jenkinsfile vendored
View file

@ -27,7 +27,7 @@ pipeline {
}
steps {
sh("git submodule update --init --recursive --force")
sh("make -j4 CC='owcc -bnt' E=.exe")
sh("make -j4 -f Makefile.watcom")
sh("mv taiga.exe taiga-win32.exe")
archiveArtifacts("taiga-win32.exe")
}

View file

@ -1,7 +1,9 @@
CC = cc
CFLAGS = -I external/xemil/include -I src
LDFLAGS =
LIBS =
CC ?= cc
CFLAGS ?= -I external/xemil/include -I src
LDFLAGS ?=
LIBS ?=
E ?=
.PHONY: all format clean

4
Makefile.watcom Normal file
View file

@ -0,0 +1,4 @@
CC = owcc -bnt
E = .exe
include Makefile