f40bfc9267
Change-Id: Id7f4717d51ed02d67cb9f9cb3c0ada4a81843f97 Reviewed-on: http://gerrit.rockbox.org/137 Reviewed-by: Nils Wallménius <nils@rockbox.org> Tested-by: Nils Wallménius <nils@rockbox.org>
10 lines
283 B
Makefile
10 lines
283 B
Makefile
|
|
# libay
|
|
AYLIB := $(CODECDIR)/libay.a
|
|
AYLIB_SRC := $(call preprocess, $(RBCODECLIB_DIR)/codecs/libgme/AYSOURCES)
|
|
AYLIB_OBJ := $(call c2obj, $(AYLIB_SRC))
|
|
OTHER_SRC += $(AYLIB_SRC)
|
|
|
|
$(AYLIB): $(AYLIB_OBJ)
|
|
$(SILENT)$(shell rm -f $@)
|
|
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|