diff options
author | Yuri Zaporogets <yuriz@users.sourceforge.net> | 2004-09-15 06:54:34 +0000 |
---|---|---|
committer | Yuri Zaporogets <yuriz@users.sourceforge.net> | 2004-09-15 06:54:34 +0000 |
commit | e0c059ab4e1e5d471372aa42caa57573de912655 (patch) | |
tree | f496dd3cd93c4ec4126ab9dd327474a589ac9ae1 /rdoff/Mkfiles/Makefile.dj | |
parent | 7549d149982c8c89991485d5ef359d22a3416a1f (diff) | |
download | nasm-e0c059ab4e1e5d471372aa42caa57573de912655.tar.gz nasm-e0c059ab4e1e5d471372aa42caa57573de912655.tar.bz2 nasm-e0c059ab4e1e5d471372aa42caa57573de912655.zip |
outrdf2.c now uses the same definitions of RDOFF2 format that RDOFF utils.
Export/import/common label size is increased from 33 to 64. Fixed the bug
that caused wrong behavior of rdfgetheaderrec() if label length was 32.
Changed error codes from numeric values to symbolic constants.
Moved some routines from rdfdump.c to rdoff.c. They will be utilized also
by rdfdisasm, which is being developed.
Diffstat (limited to 'rdoff/Mkfiles/Makefile.dj')
-rw-r--r-- | rdoff/Mkfiles/Makefile.dj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rdoff/Mkfiles/Makefile.dj b/rdoff/Mkfiles/Makefile.dj index 2099739..163d278 100644 --- a/rdoff/Mkfiles/Makefile.dj +++ b/rdoff/Mkfiles/Makefile.dj @@ -33,8 +33,8 @@ RDXLIBS = rdoff.o rdfload.o symtab.o hash.o collectn.o all: rdfdump ldrdf rdx rdflib rdf2bin rdf2com -rdfdump: rdfdump.o - $(CC) -o rdfdump rdfdump.o +rdfdump: rdfdump.o rdoff.o + $(CC) -o rdfdump rdfdump.o rdoff.o ldrdf: ldrdf.o $(LDRDFLIBS) $(CC) -o ldrdf ldrdf.o $(LDRDFLIBS) |