Skip to content

Commit

Permalink
Add common DMCFLAGS macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-sh committed Apr 10, 2013
1 parent 38c8ee3 commit e446442
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion alloc/alloc.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\ALLOC
CFLAGS=-I..\common -r
CFLAGS=$(DMCFLAGS)

HEADERS=..\common\all.h ..\common\optlink.h ..\common\errors.h ..\common\io_struc.h \
..\common\exes.h ..\common\library.h ..\common\symbols.h ..\common\groups.h \
Expand Down
2 changes: 1 addition & 1 deletion common/common.mak
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\COMMON
CFLAGS=-I..\common -r -N_ -o
CFLAGS=$(DMCFLAGS) -N_

HEADERS=..\common\all.h ..\common\optlink.h ..\common\errors.h ..\common\io_struc.h \
..\common\exes.h ..\common\library.h ..\common\symbols.h ..\common\groups.h \
Expand Down
1 change: 1 addition & 0 deletions common/makemacs
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ LIB = $(BASE)\LIBDLL
# MASM 10: problems linking when assembling with debug info
MASMFLAGS = $(MASMFLAGS) /omf /c /Cp /Fl$(LST)\ /Sn /Fo$(OBJ)\ /I$(BASE)\COMMON

DMCFLAGS=-I..\common -r
2 changes: 1 addition & 1 deletion cv/cv.mak
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\CV
CFLAGS=-I..\common -r -N_
CFLAGS=$(DMCFLAGS) -N_

HEADERS=..\common\all.h ..\common\optlink.h ..\common\errors.h ..\common\io_struc.h \
..\common\exes.h ..\common\library.h ..\common\symbols.h ..\common\groups.h \
Expand Down
2 changes: 1 addition & 1 deletion install/install.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\INSTALL
CFLAGS=-I..\common -r -N_
CFLAGS=$(DMCFLAGS) -N_

HEADERS=..\common\all.h ..\common\optlink.h ..\common\errors.h ..\common\io_struc.h \
..\common\exes.h ..\common\library.h ..\common\symbols.h ..\common\groups.h \
Expand Down
2 changes: 1 addition & 1 deletion moves/moves.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\MOVES
CFLAGS=-I..\common -r
CFLAGS=$(DMCFLAGS)


ALL : $(LIB)\MOVES.LIB
Expand Down
2 changes: 1 addition & 1 deletion ntio/ntio.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

SRC = $(BASE)\NTIO
FLAGS = $(MASMFLAGS)
CFLAGS=-I..\common -r -N_
CFLAGS=$(DMCFLAGS) -N_

HEADERS=..\common\all.h ..\common\optlink.h ..\common\errors.h ..\common\io_struc.h \
..\common\exes.h ..\common\library.h ..\common\symbols.h ..\common\groups.h \
Expand Down
2 changes: 1 addition & 1 deletion parse/parse.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\PARSE
CFLAGS=-I..\common -r -N_
CFLAGS=$(DMCFLAGS) -N_


ALL : $(LIB)\PARSE.LIB
Expand Down
2 changes: 1 addition & 1 deletion subs/subs.mak
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FLAGS = $(MASMFLAGS)
SRC = $(BASE)\SUBS
CFLAGS=-I..\common -r
CFLAGS=$(DMCFLAGS)

HEADERS=..\common\all.h ..\common\optlink.h ..\common\errors.h ..\common\io_struc.h \
..\common\exes.h ..\common\library.h ..\common\symbols.h ..\common\groups.h \
Expand Down

0 comments on commit e446442

Please sign in to comment.