diff options
Diffstat (limited to 'apps/codecs/libgme/ay/libay.make')
| -rwxr-xr-x | apps/codecs/libgme/ay/libay.make | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/apps/codecs/libgme/ay/libay.make b/apps/codecs/libgme/ay/libay.make deleted file mode 100755 index 9ad6619..0000000 --- a/apps/codecs/libgme/ay/libay.make +++ /dev/null @@ -1,21 +0,0 @@ - -# libay -AYLIB := $(CODECDIR)/libay.a -AYLIB_SRC := $(call preprocess, $(APPSDIR)/codecs/libgme/ay/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 - -AYFLAGS = $(filter-out -O%,$(CODECFLAGS)) -fno-strict-aliasing -DGME_AY_TYPE -ifeq ($(CPU),arm) - AYFLAGS += -O1 -else - AYFLAGS += -O2 -endif - -$(CODECDIR)/libgme/ay/%.o: $(ROOTDIR)/apps/codecs/libgme/%.c - $(SILENT)mkdir -p $(dir $@) - $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) $(AYFLAGS) -c $< -o $@ |