diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-02-25 10:08:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-02-25 10:08:02 +0200 |
commit | 27142799b33dabc075f660e5de8ab375a1ac9314 (patch) | |
tree | c9b279c24fd1b80985bec7c952fb9598ca97e3b4 /makefile | |
parent | 7f23a534f3ed0b9c79a7f7c5c01648a7a4fcff70 (diff) |
Update and improve for new dependencies
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 21 |
1 files changed, 6 insertions, 15 deletions
@@ -28,26 +28,17 @@ dist-win: $(out_base)/xsde/.dist-win # Clean. # -clean: $(out_base)/libcult/.clean \ - $(out_base)/libfrontend-elements/.clean \ - $(out_base)/libbackend-elements/.clean \ - $(out_base)/libxsd-frontend/.clean \ +clean: $(out_base)/libxsd-frontend/.clean \ $(out_base)/xsde/.clean -src_root := $(src_base)/libcult +ifneq ($(EXTERNAL_LIBCUTL),y) +src_root := $(src_base)/libcutl scf_root := $(src_root)/build out_root := $(src_root) -$(call import,$(src_base)/libcult/makefile) +$(call import,$(src_base)/libcutl/makefile) -src_root := $(src_base)/libfrontend-elements -scf_root := $(src_root)/build -out_root := $(src_root) -$(call import,$(src_base)/libfrontend-elements/makefile) - -src_root := $(src_base)/libbackend-elements -scf_root := $(src_root)/build -out_root := $(src_root) -$(call import,$(src_base)/libbackend-elements/makefile) +clean: $(out_base)/libcutl/.clean +endif src_root := $(src_base)/libxsd-frontend scf_root := $(src_root)/build |