Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!microsoft!richgi From: richgi@microsoft.UUCP (Richard GILLMANN) Newsgroups: comp.os.msdos.programmer Subject: Re: MS make is not really make?? Message-ID: <57635@microsoft.UUCP> Date: 21 Sep 90 23:05:29 GMT References: Reply-To: richgi@microsoft.UUCP (Richard GILLMANN) Distribution: comp Organization: Microsoft Corp., Redmond WA Lines: 12 In article melling@cs.psu.edu (Michael D Mellinger) writes: |Is it possible to set up a makefile like the one below with MS C 6.0? | |OBJS = foo.o foo1.o .... | |all: $(OBJS) | $(CC) $(OBJS) If you change the .o extensions to .obj, this makefile will work fine with C6 and NMAKE. NMAKE is quite compatible with make, but of course the DOS or OS/2 shell is different than Unix, and this is where most of the conversion work comes from.