* device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
[fw/sdcc] / as / z80 / Makefile.in
index 62505d89c70d1a1ef0646a5b2c8622b4eeb14db4..50d70befbe5c11eed04a89d7f09ad236e68c2f79 100644 (file)
@@ -42,17 +42,17 @@ ASXZ80              = $(PRJDIR)/bin/as-z80
 all: checkconf $(ASXZ80)
 
 $(ASXZ80): $(ASOBJECTS)
-       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ASOBJECTS) 
+       $(CC) $(CFLAGS) -o $@ $(ASOBJECTS) $(LDFLAGS)
 
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s $(ASXZ80) $(bindir)/as-z80
+       $(INSTALL) $(ASXZ80) $(DESTDIR)$(bindir)/as-z80
 
 # Deleting all the installed files
 # --------------------------------
 uninstall:
-       rm -f $(bindir)/as-z80
+       rm -f $(DESTDIR)$(bindir)/as-z80
 
 
 # Performing self-test
@@ -68,7 +68,7 @@ installcheck:
 # Creating installation directories
 # ---------------------------------
 installdirs:
-       $(INSTALL) -d $(bindir)
+       $(INSTALL) -d $(DESTDIR)$(bindir)
 
 
 # Creating dependencies