]> git.sur5r.net Git - cc65/commitdiff
Have 'avail' not be dependent on 'all'.
authorOliver Schmidt <ol.sc@web.de>
Fri, 17 May 2013 14:21:05 +0000 (16:21 +0200)
committerOliver Schmidt <ol.sc@web.de>
Fri, 17 May 2013 14:21:05 +0000 (16:21 +0200)
There are two reasons for removing this dependency:
- If someone does 'make avail' on the top level Makefile he ends up with
  binaries but without libraries - not nice. Better do just "nothing" and
  have hin understand that he needs to do 'make [all]' on the top level
  Makfile first.
- If 'make avail' is done via 'sudo' it isn't desirable to do a large amount
  of work as root.
BTW: I wasn't sure if this dependency is a good thing in the first place
but I saw it in many examples ('install' depending on 'all') so I did it too.

src/Makefile

index e316067d2a6a26e9e6c88ed82c84905063fd503a..3f8c47d0f343b658164146eebf3c7217d34a5686 100644 (file)
@@ -36,7 +36,7 @@ mostlyclean:
 clean:
        $(RM) -r ../wrk ../bin
 
-avail: all
+avail:
        $(foreach prog,$(PROGS),$(AVAIL_recipe))
 
 unavail: