* device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
[fw/sdcc] / as / z80 / Makefile.in
index d95c692678c863cb38ea7ce75849c181eeb799b9..50d70befbe5c11eed04a89d7f09ad236e68c2f79 100644 (file)
@@ -16,15 +16,15 @@ PRJDIR              = ../..
 
 srcdir         = @srcdir@
 prefix         = @prefix@
-exec_prefix     = ${prefix}
-bindir          = ${exec_prefix}/bin
-libdir          = ${exec_prefix}/lib
-datadir         = ${prefix}/share
-includedir      = ${prefix}/include
-mandir          = ${prefix}/man
+exec_prefix     = @exec_prefix@
+bindir          = @bindir@
+libdir          = @libdir@
+datadir         = @datadir@
+includedir      = @include@
+mandir          = @mandir@
 man1dir         = $(mandir)/man1
 man2dir         = $(mandir)/man2
-infodir         = ${prefix}/info
+infodir         = @infodir@
 
 CPPFLAGS       = @CPPFLAGS@ -I. -I$(PRJDIR)
 CFLAGS         = @CFLAGS@ -Wall -DINDEXLIB -DMLH_MAP -DUNIX -DSDK -funsigned-char -ggdb
@@ -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