]> git.sur5r.net Git - cc65/commitdiff
Hack: Changed TARGET order to have apple2enh.lib available for convert.system.
authorOliver Schmidt <ol.sc@web.de>
Wed, 8 May 2013 23:32:48 +0000 (01:32 +0200)
committerOliver Schmidt <ol.sc@web.de>
Wed, 8 May 2013 23:32:48 +0000 (01:32 +0200)
There's a quite special case of a targetutil for the TARGET geos-apple having to be
built as TARGET apple2enh binary. We can't just add a dependency to ../lib/apple2enhlib
because the TARGETs are built in individual make instances (because of vpath).

Doing that the "right way" would be _very_ complicated and would turn the Makefiles way
less readable. Therefore I decided to solve that by just reordering the TARGETs. Surely
this won't work if i.e. 'make geos-apple' is entered on a clean system. But still I consider
it appropriate.

I ordered the TARGETs btw so that they are more in an alphabetical order...

libsrc/Makefile

index ea486499437c5d85aba74d50c0f524baf4e476ad..ae691697de2d4cde7b4ab1c7fa1d8dfa2e7b0953 100644 (file)
@@ -10,12 +10,12 @@ CBMS = c128   \
 GEOS = geos-apple \
        geos-cbm
 
-TARGETS = $(CBMS)   \
-          $(GEOS)   \
-          apple2    \
+TARGETS = apple2    \
           apple2enh \
           atari     \
           atmos     \
+          $(CBMS)   \
+          $(GEOS)   \
           lynx      \
           nes       \
           supervision