ack/lang/m2/test/Wirth/makefile

48 lines
931 B
Makefile
Raw Normal View History

1988-04-20 10:43:48 +00:00
IFLAGS =
M2FLAGS =
1988-10-19 16:44:01 +00:00
MOD = m2
1988-04-20 10:43:48 +00:00
SUFFIX = o
1988-10-19 16:44:01 +00:00
LIBS =
1988-04-20 10:43:48 +00:00
all: PowersOf2 XREF
objects: PowersOf2_o_files XREF_o_files
1988-10-19 16:44:01 +00:00
PowersOf2.$(SUFFIX): \
PowersOf2.mod \
/proj/em/Work/lib/m2/InOut.def
$(MOD) -c $(M2FLAGS) $(IFLAGS) PowersOf2.mod
1988-10-19 16:44:01 +00:00
TableHandl.$(SUFFIX): \
TableHandl.mod \
TableHandl.def \
/proj/em/Work/lib/m2/InOut.def \
/proj/em/Work/lib/m2/Storage.def
$(MOD) -c $(M2FLAGS) $(IFLAGS) TableHandl.mod
1988-10-19 16:44:01 +00:00
XREF.$(SUFFIX): \
XREF.mod \
/proj/em/Work/lib/m2/InOut.def \
TableHandl.def
$(MOD) -c $(M2FLAGS) $(IFLAGS) XREF.mod
1988-04-20 10:43:48 +00:00
OBS_PowersOf2 = \
PowersOf2.$(SUFFIX)
1988-10-19 16:44:01 +00:00
OBS2_PowersOf2 =
PowersOf2_o_files: $(OBS_PowersOf2)
1988-10-19 16:44:01 +00:00
PowersOf2: $(OBS_PowersOf2) $(OBS2_PowersOf2)
$(MOD) -o PowersOf2 $(M2FLAGS) $(OBS_PowersOf2) $(OBS2_PowersOf2) $(LIBS)
1988-04-20 10:43:48 +00:00
OBS_XREF = \
1988-10-19 16:44:01 +00:00
XREF.$(SUFFIX) \
1988-04-20 10:43:48 +00:00
TableHandl.$(SUFFIX)
1988-10-19 16:44:01 +00:00
OBS2_XREF =
XREF_o_files: $(OBS_XREF)
1988-10-19 16:44:01 +00:00
XREF: $(OBS_XREF) $(OBS2_XREF)
$(MOD) -o XREF $(M2FLAGS) $(OBS_XREF) $(OBS2_XREF) $(LIBS)