Xref: utzoo comp.os.msdos.apps:803 comp.os.msdos.misc:861 comp.os.msdos.programmer:2548 Path: utzoo!mnetor!tmsoft!torsqnt!news-server.csri.toronto.edu!clyde.concordia.ca!thunder.mcrcim.mcgill.edu!snorkelwacker.mit.edu!usc!wuarchive!uunet!munnari.oz.au!yoyo.aarnet.edu.au!sirius.ucs.adelaide.edu.au!levels!marwk From: marwk@levels.sait.edu.au Newsgroups: comp.os.msdos.apps,comp.os.msdos.misc,comp.os.msdos.programmer Subject: TURBOC make with command lines > 127 chars - HOW? Message-ID: <15782.27753f1b@levels.sait.edu.au> Date: 23 Dec 90 23:34:51 GMT Organization: Sth Australian Inst of Technology Lines: 25 I have a makefile which has: OBJS = a.obj b.obj c.obj \ (several more files here ...) \ x.obj y.obj z.obj $(EFILE): $(OBJS) tcc -c -m$(MM) $(OBJS) The tcc line gets converted to: tcc -emain.exe -ms a.obj b.obj ... x.obj y.obj z.obj and the message Fatal: Cammand arguments too long appears. In the reference manual Appendix D it states that the command line cannot be longer than 127 characters a DOS limitation. How can I produce the desired exe file using make with this limitation? Thank you in advance. Ray