add Makefile.watcom
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good
This commit is contained in:
parent
2900fb1fac
commit
de036d46aa
3 changed files with 11 additions and 5 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
|
@ -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")
|
||||
}
|
||||
|
|
|
|||
10
Makefile
10
Makefile
|
|
@ -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
4
Makefile.watcom
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
CC = owcc -bnt
|
||||
E = .exe
|
||||
|
||||
include Makefile
|
||||
Loading…
Add table
Add a link
Reference in a new issue