* src/SDCCmain.c (assemble, linkEdit): preparations for -o
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 11 Jan 2003 14:07:54 +0000 (14:07 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 11 Jan 2003 14:07:54 +0000 (14:07 +0000)
* src/port.h: typo
* src/pic/main.c (_asmCmd): gpasm supports -o
* device/lib/Makefile.in: remove intermediate files

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2149 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/z80/main.c

index eafbd6552f576da8f2ddd73f99098bb820918a11..c1b96e5e730a8b1b8570710b955cf3e69b5eb2a5 100644 (file)
@@ -310,11 +310,11 @@ _setValues(void)
       setMainValue ("z80outext", ".ihx");
     }
 
-  setMainValue ("z80stdobjdstfilename" , "{dstfilename}{objext}");
-  setMainValue ("z80stdlinkdstfilename", "{dstfilename}{z80outext}");
+  setMainValue ("stdobjdstfilename" , "{dstfilename}{objext}");
+  setMainValue ("stdlinkdstfilename", "{dstfilename}{z80outext}");
 
   setMainValue ("z80extraobj", joinn (relFiles, nrelFiles));
-  
+
   sprintf (buffer, "-b_CODE=0x%04X -b_DATA=0x%04X", options.code_loc, options.data_loc);
   setMainValue ("z80bases", buffer);
 }
@@ -444,13 +444,13 @@ _hasNativeMulFor (iCode *ic, sym_link *left, sym_link *right)
     "{bindir}{sep}link-{port} -n -c -- {z80bases} -m -j" \
     " {z80libspec}" \
     " {z80extralibfiles} {z80extralibpaths}" \
-    " {z80outputtypeflag} {z80linkdstfilename}" \
+    " {z80outputtypeflag} {linkdstfilename}" \
     " {z80crt0}" \
     " {dstfilename}{objext}" \
-    " {z80extraobj}" 
+    " {z80extraobj}"
 
 #define ASMCMD \
-    "{bindir}{sep}as-{port} -plosgff {z80objdstfilename} {dstfilename}{asmext}"
+    "{bindir}{sep}as-{port} -plosgff {objdstfilename} {dstfilename}{asmext}"
 
 /* Globals */
 PORT z80_port =