Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ else
CPPFLAGS += -DHOST_LINUX
endif

bins = smlrc smlrl smlrcc smlrpp n2f
libs = lcdh.a lcdu.a lcds.a lcw.a lcl.a lcdp.a lcm.a
bins = smlrc smlrc86 smlrl smlrcc smlrpp n2f
libs = lcdh.a lcdu.a lcds.a lcds86.a lcw.a lcl.a lcdp.a lcm.a
stub = dpstub.exe

all: $(libs) $(stub)
Expand Down Expand Up @@ -46,6 +46,9 @@ clean:
$(stub):
./smlrcc -small $(srcdir)/srclib/dpstub.asm -o $@

smlrc86:
$(CC) $(CFLAGS) -DONLY8086 -o $@ v0100/smlrc.c

smlrpp:
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -DSTAND_ALONE -DUCPP_CONFIG \
$(srcdir)/ucpp/arith.c \
Expand Down
Loading