diff options
Diffstat (limited to 'Mkfiles/netware.mak')
-rw-r--r-- | Mkfiles/netware.mak | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/Mkfiles/netware.mak b/Mkfiles/netware.mak index 59891de..775ead9 100644 --- a/Mkfiles/netware.mak +++ b/Mkfiles/netware.mak @@ -1,4 +1,4 @@ -# -* makefile -*- GNU Makefile for NetWare target +# -*- makefile -*- GNU Makefile for NetWare target PROOT=. OBJDIR=release @@ -28,20 +28,23 @@ LDFLAGS+=-s O = o -NASM = nasm.$(O) nasmlib.$(O) raa.$(O) saa.$(O) \ - float.$(O) insnsa.$(O) insnsb.$(O) \ - assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \ - outform.$(O) output/outbin.$(O) \ - output/outaout.$(O) output/outcoff.$(O) \ - output/outelf32.$(O) output/outelf64.$(O) \ - output/outobj.$(O) output/outas86.$(O) output/outrdf2.$(O) \ - output/outdbg.$(O) output/outieee.$(O) output/outmacho.$(O) \ - preproc.$(O) quote.$(O) pptok.$(O) macros.$(O) \ - listing.$(O) eval.$(O) exprlib.$(O) stdscan.$(O) strfunc.$(O) \ - tokhash.$(O) regvals.$(O) regflags.$(O) - -NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) \ - insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) +#--- Begin File Lists ---# +# Edit in Makefile.in, not here! +NASM = nasm.o nasmlib.o raa.o saa.o \ + float.o insnsa.o insnsb.o \ + assemble.o labels.o hashtbl.o crc64.o parser.o \ + outform.o output/outbin.o \ + output/outaout.o output/outcoff.o \ + output/outelf32.o output/outelf64.o \ + output/outobj.o output/outas86.o output/outrdf2.o \ + output/outdbg.o output/outieee.o output/outmacho.o \ + preproc.o quote.o pptok.o macros.o \ + listing.o eval.o exprlib.o stdscan.o strfunc.o \ + tokhash.o regvals.o regflags.o + +NDISASM = ndisasm.o disasm.o sync.o nasmlib.o \ + insnsd.o insnsb.o insnsn.o regs.o regdis.o +#--- End File Lists ---# NASM_OBJ = $(addprefix $(OBJDIR)/,$(notdir $(NASM))) $(EOLIST) NDIS_OBJ = $(addprefix $(OBJDIR)/,$(notdir $(NDISASM))) $(EOLIST) |