generated with newer makefile generator
This commit is contained in:
parent
869ba1ec9e
commit
197f5bc796
1 changed files with 8 additions and 5 deletions
|
@ -6,28 +6,31 @@ LIBS =
|
||||||
|
|
||||||
all: PowersOf2 XREF
|
all: PowersOf2 XREF
|
||||||
|
|
||||||
|
objects: PowersOf2_o_files XREF_o_files
|
||||||
|
|
||||||
|
|
||||||
PowersOf2.$(SUFFIX): \
|
PowersOf2.$(SUFFIX): \
|
||||||
PowersOf2.mod \
|
PowersOf2.mod \
|
||||||
/proj/em/Work/lib/m2/InOut.def
|
/proj/em/Work/lib/m2/InOut.def
|
||||||
$(MOD) -c.$(SUFFIX) $(M2FLAGS) $(IFLAGS) PowersOf2.mod
|
$(MOD) -c $(M2FLAGS) $(IFLAGS) PowersOf2.mod
|
||||||
TableHandl.$(SUFFIX): \
|
TableHandl.$(SUFFIX): \
|
||||||
TableHandl.mod \
|
TableHandl.mod \
|
||||||
TableHandl.def \
|
TableHandl.def \
|
||||||
/proj/em/Work/lib/m2/InOut.def \
|
/proj/em/Work/lib/m2/InOut.def \
|
||||||
/proj/em/Work/lib/m2/Storage.def
|
/proj/em/Work/lib/m2/Storage.def
|
||||||
$(MOD) -c.$(SUFFIX) $(M2FLAGS) $(IFLAGS) TableHandl.mod
|
$(MOD) -c $(M2FLAGS) $(IFLAGS) TableHandl.mod
|
||||||
XREF.$(SUFFIX): \
|
XREF.$(SUFFIX): \
|
||||||
XREF.mod \
|
XREF.mod \
|
||||||
/proj/em/Work/lib/m2/InOut.def \
|
/proj/em/Work/lib/m2/InOut.def \
|
||||||
TableHandl.def
|
TableHandl.def
|
||||||
$(MOD) -c.$(SUFFIX) $(M2FLAGS) $(IFLAGS) XREF.mod
|
$(MOD) -c $(M2FLAGS) $(IFLAGS) XREF.mod
|
||||||
|
|
||||||
OBS_PowersOf2 = \
|
OBS_PowersOf2 = \
|
||||||
PowersOf2.$(SUFFIX)
|
PowersOf2.$(SUFFIX)
|
||||||
|
|
||||||
OBS2_PowersOf2 =
|
OBS2_PowersOf2 =
|
||||||
|
|
||||||
o_files: $(OBS_PowersOf2)
|
PowersOf2_o_files: $(OBS_PowersOf2)
|
||||||
|
|
||||||
PowersOf2: $(OBS_PowersOf2) $(OBS2_PowersOf2)
|
PowersOf2: $(OBS_PowersOf2) $(OBS2_PowersOf2)
|
||||||
$(MOD) -o PowersOf2 $(M2FLAGS) $(OBS_PowersOf2) $(OBS2_PowersOf2) $(LIBS)
|
$(MOD) -o PowersOf2 $(M2FLAGS) $(OBS_PowersOf2) $(OBS2_PowersOf2) $(LIBS)
|
||||||
|
@ -38,7 +41,7 @@ OBS_XREF = \
|
||||||
|
|
||||||
OBS2_XREF =
|
OBS2_XREF =
|
||||||
|
|
||||||
o_files: $(OBS_XREF)
|
XREF_o_files: $(OBS_XREF)
|
||||||
|
|
||||||
XREF: $(OBS_XREF) $(OBS2_XREF)
|
XREF: $(OBS_XREF) $(OBS2_XREF)
|
||||||
$(MOD) -o XREF $(M2FLAGS) $(OBS_XREF) $(OBS2_XREF) $(LIBS)
|
$(MOD) -o XREF $(M2FLAGS) $(OBS_XREF) $(OBS2_XREF) $(LIBS)
|
||||||
|
|
Loading…
Reference in a new issue