Skip to content

Commit

Permalink
ow-build: make files rename client macros to use cli_ prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak committed May 22, 2024
1 parent c6cf426 commit 263a008
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bld/rsilib/client.mif
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rsilib_inc_dirs = -I"$(rsilib_dir)/h" -I"$(d16api_dir)/include"
rsilib_lib = $(rsilib_dir)/dosi86$(memory_model_i86)/rsilib$(memory_model_i86).lib
cli_rsilib_inc_dirs = -I"$(rsilib_dir)/h" -I"$(d16api_dir)/include"
cli_rsilib_lib = $(rsilib_dir)/dosi86$(memory_model_i86)/rsilib$(memory_model_i86).lib
4 changes: 2 additions & 2 deletions bld/trap/lcl/dos/dosx/rsi/dos.srv/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ which = SERVER
!include $(rsilib_dir)/client.mif

extra_objs = rsiacc.obj
extra_incs = $(rsilib_inc_dirs)
extra_libs = $(rsilib_lib)
extra_incs = $(cli_rsilib_inc_dirs)
extra_libs = $(cli_rsilib_lib)

extra_c_flags = -zu

Expand Down
4 changes: 2 additions & 2 deletions bld/wsample/master.mif
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ inc_dirs = -I. -I"../h" -I"$(nwoss_dir)/common/h" -I"$(nwoss_dir)/nw4/h" -I"$(di
!else ifeq target win
inc_dirs = -I. -I"../h" $(windbg_inc_dirs) -I"$(dig_dir)/h"
!else ifeq target rsi
inc_dirs = -I. -I"../h" $(rsilib_inc_dirs) -I"$(dig_dir)/h"
inc_dirs = -I. -I"../h" $(cli_rsilib_inc_dirs) -I"$(dig_dir)/h"
!else ifeq target pls
inc_dirs = -I. -I"../h" -I"$(plsdir)" -I"$(dig_dir)/h"
!else ifeq target linux
Expand Down Expand Up @@ -152,7 +152,7 @@ exetarg_objs_linux_ppc = samplnx.obj sysio.obj io.obj sysinit.obj sampexe.obj l
exetarg_objs_linux_x64 = samplnx.obj sysio.obj io.obj sysinit.obj sampexe.obj lnxutl.obj
exetarg_objs = $(exetarg_objs_$(target)_$(host_cpu)) sample.obj sampdata.obj wmsg.obj output.obj
exetarg_libs_pls = $(plsdir)/wdos32.lib $(plsdir)/wdosx32.lib
exetarg_libs_rsi = $(rsilib_lib)
exetarg_libs_rsi = $(cli_rsilib_lib)
exetarg_libs_win = $(windbg_lib)
exetarg_libs = $(exetarg_libs_$(target))
!ifeq host_os win
Expand Down

0 comments on commit 263a008

Please sign in to comment.