From aa65383c63a6caeefb06b6202282bea0c4159edd Mon Sep 17 00:00:00 2001 From: William McBrine Date: Thu, 26 Oct 2006 11:02:17 +0000 Subject: [PATCH] Watcom's .autodepend doesn't work for .exe's. --- watcom.mif | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/watcom.mif b/watcom.mif index ca9c427a..917730dd 100644 --- a/watcom.mif +++ b/watcom.mif @@ -44,8 +44,15 @@ $(LIBPANEL) : $(PANOBJS) .c.obj: .autodepend $(CC) $(CCFLAGS) $< -.obj.exe: .autodepend - $(LINK) $(LDFLAGS) n $@ f $< l $(LIBCURSES) +.obj.exe: + $(LINK) $(LDFLAGS) n $@ f $*.obj l $(LIBCURSES) + +testcurs.exe: testcurs.obj $(LIBCURSES) +newdemo.exe: newdemo.obj $(LIBCURSES) +xmas.exe: xmas.obj $(LIBCURSES) +firework.exe: firework.obj $(LIBCURSES) +rain.exe: rain.obj $(LIBCURSES) +worm.exe: worm.obj $(LIBCURSES) ptest.exe: ptest.obj $(LIBCURSES) $(LIBPANEL) $(LINK) $(LDFLAGS) n $@ f ptest.obj l $(LIBCURSES) l $(LIBPANEL)