mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
01f59fa85f
heavily customized version of DUMB (Dynamic Universal Music Bibliotheque). It has been slightly modified by me: * Added support for Ogg Vorbis-compressed samples in XM files ala FMOD. * Removed excessive mallocs from the replay core. * Rerolled the loops in resample.c. Unrolling them made the object file ~250k large while providing little benefit. Even at ~100k, I think it's still larger than it ought to be, but I'll live with it for now. Other than that, it's essentially the same thing you'd hear in foobar2000, minus some subsong detection features. Release builds of the library look like they might even be slightly faster than FMOD, which is a plus. - Fixed: Timidity::font_add() did not release the file reader it created. - Fixed: The SF2 loader did not free the sample headers in its destructor. SVN r995 (trunk)
197 lines
5.4 KiB
Makefile
197 lines
5.4 KiB
Makefile
# Makefile for DUMB, derived from zlib/Makefile.mgw.
|
|
# Yes, I have forgone the Makefiles provided with DUMB, since they weren't kept
|
|
# up to date with kode54's changes.
|
|
|
|
CMD=0
|
|
ifeq (Windows_NT,$(OS))
|
|
CMD=1
|
|
ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys)
|
|
CMD=0
|
|
endif
|
|
endif
|
|
|
|
CCDV := @../ccdv
|
|
|
|
CC := gcc
|
|
CFLAGS := $(LOC) -O3 -Wall -fomit-frame-pointer
|
|
|
|
LD := $(CC)
|
|
LDFLAGS := $(LOC) -s
|
|
|
|
AR := ar
|
|
ARFLAGS := rcs
|
|
|
|
CONFIG ?= Release
|
|
|
|
# Macro for replacing / with \ where necessary. Usage: $(call FIX,path)
|
|
FIX = $(subst /,\,$(subst /*,\\\*,$(1)))
|
|
|
|
CORE_MODULES = \
|
|
core/atexit.c \
|
|
core/duhlen.c \
|
|
core/duhtag.c \
|
|
core/dumbfile.c \
|
|
core/loadduh.c \
|
|
core/makeduh.c \
|
|
core/rawsig.c \
|
|
core/readduh.c \
|
|
core/register.c \
|
|
core/rendduh.c \
|
|
core/rendsig.c \
|
|
core/unload.c \
|
|
helpers/barray.c \
|
|
helpers/clickrem.c \
|
|
helpers/memfile.c \
|
|
helpers/resample.c \
|
|
helpers/riff.c \
|
|
helpers/sampbuf.c \
|
|
helpers/silence.c \
|
|
helpers/stdfile.c \
|
|
it/filter.cpp \
|
|
it/itload.c \
|
|
it/itload2.c \
|
|
it/itmisc.c \
|
|
it/itorder.c \
|
|
it/itread.c \
|
|
it/itread2.c \
|
|
it/itrender.c \
|
|
it/itunload.c \
|
|
it/load669.c \
|
|
it/load6692.c \
|
|
it/loadasy.c \
|
|
it/loadasy2.c \
|
|
it/loadmod.c \
|
|
it/loadmod2.c \
|
|
it/loadmtm.c \
|
|
it/loadmtm2.c \
|
|
it/loadoldpsm.c \
|
|
it/loadoldpsm2.c \
|
|
it/loadpsm.c \
|
|
it/loadpsm2.c \
|
|
it/loadptm.c \
|
|
it/loadptm2.c \
|
|
it/loadriff.c \
|
|
it/loadriff2.c \
|
|
it/loads3m.c \
|
|
it/loads3m2.c \
|
|
it/loadstm.c \
|
|
it/loadstm2.c \
|
|
it/loadxm.c \
|
|
it/loadxm2.c \
|
|
it/ptmeffect.c \
|
|
it/read669.c \
|
|
it/read6692.c \
|
|
it/readam.c \
|
|
it/readasy.c \
|
|
it/readdsmf.c \
|
|
it/readmod.c \
|
|
it/readmod2.c \
|
|
it/readmtm.c \
|
|
it/readoldpsm.c \
|
|
it/readpsm.c \
|
|
it/readptm.c \
|
|
it/readriff.c \
|
|
it/reads3m.c \
|
|
it/reads3m2.c \
|
|
it/readstm.c \
|
|
it/readstm2.c \
|
|
it/readxm.c \
|
|
it/readxm2.c \
|
|
it/xmeffect.c
|
|
|
|
LIBDIR := lib
|
|
OBJDIR_BASE := obj
|
|
|
|
WFLAGS := -Wall -W -Wstrict-prototypes -Wmissing-declarations -Wno-pointer-sign -Wno-uninitialized
|
|
WFLAGS_ALLEGRO := -Wno-missing-declarations
|
|
OFLAGS := -O2 -ffast-math -fomit-frame-pointer
|
|
DBGFLAGS := -DDEBUGMODE=1 -g3
|
|
|
|
CFLAGS_RELEASE := -Iinclude $(OFLAGS) -DNDEBUG
|
|
CFLAGS_DEBUG := -Iinclude $(DBGFLAGS) -D_DEBUG
|
|
|
|
LDFLAGS := -s
|
|
|
|
CORE_LIB_FILE_RELEASE := $(LIBDIR)/libdumb.a
|
|
CORE_LIB_FILE_DEBUG := $(LIBDIR)/libdumbd.a
|
|
|
|
ifeq ($(CONFIG),Debug)
|
|
OBJDIR = $(OBJDIR_BASE)/debug
|
|
CFLAGS_BASE = $(CFLAGS_DEBUG)
|
|
CORE_LIB_FILE := $(CORE_LIB_FILE_DEBUG)
|
|
endif
|
|
ifeq ($(CONFIG),Release)
|
|
OBJDIR = $(OBJDIR_BASE)/release
|
|
CFLAGS_BASE = $(CFLAGS_RELEASE)
|
|
CORE_LIB_FILE := $(CORE_LIB_FILE_RELEASE)
|
|
endif
|
|
|
|
CFLAGS = $(CFLAGS_BASE) $(WFLAGS)
|
|
|
|
all: make-outdirs core
|
|
|
|
core: $(CORE_LIB_FILE)
|
|
|
|
make-outdirs:
|
|
ifeq (0,$(CMD))
|
|
mkdir -p $(LIBDIR)
|
|
mkdir -p $(OBJDIR_BASE)/debug
|
|
mkdir -p $(OBJDIR_BASE)/release
|
|
else
|
|
-@if not exist $(call FIX,"$(LIBDIR)") mkdir $(call FIX,"$(LIBDIR)")
|
|
-@if not exist $(call FIX,"$(OBJDIR_BASE)/debug") mkdir $(call FIX,"$(OBJDIR_BASE)/debug")
|
|
-@if not exist $(call FIX,"$(OBJDIR_BASE)/release") mkdir $(call FIX,"$(OBJDIR_BASE)/release")
|
|
endif
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
ifeq (0,$(CMD))
|
|
rm -f $(CORE_LIB_FILE_RELEASE)
|
|
rm -f $(CORE_LIB_FILE_DEBUG)
|
|
rm -f $(OBJDIR_BASE)/debug/*.o
|
|
rm -f $(OBJDIR_BASE)/release/*.o
|
|
rmdir $(LIBDIR) >/dev/null
|
|
rmdir $(OBJDIR_BASE)/debug >/dev/null
|
|
rmdir $(OBJDIR_BASE)/release >/dev/null
|
|
rmdir $(OBJDIR_BASE) >/dev/null
|
|
else
|
|
-del /q /f $(call FIX,"$(CORE_LIB_FILE_RELEASE)") 2>nul
|
|
-del /q /f $(call FIX,"$(CORE_LIB_FILE_DEBUG)") 2>nul
|
|
-del /q /f $(call FIX,"$(OBJDIR_BASE)/debug/")*.o 2>nul
|
|
-del /q /f $(call FIX,"$(OBJDIR_BASE)/release/")*.o 2>nul
|
|
-rmdir /q $(call FIX,"$(LIBDIR)") 2>nul
|
|
-rmdir /q $(call FIX,"$(OBJDIR_BASE)/debug") 2>nul
|
|
-rmdir /q $(call FIX,"$(OBJDIR_BASE)/release") 2>nul
|
|
-rmdir /q $(call FIX,"$(OBJDIR_BASE)") 2>nul
|
|
endif
|
|
|
|
CORE_OBJECTS := $(addprefix $(OBJDIR)/, $(notdir $(patsubst %.cpp, %.o, $(CORE_MODULES:%.c=%.o))))
|
|
|
|
|
|
# Pass the current value of CFLAGS through to the commands. Or, more
|
|
# accurately, create a local copy of the current CFLAGS variable. This is
|
|
# necessary because Make doesn't expand variables in commands until they are
|
|
# executed.
|
|
$(CORE_LIB_FILE): CFLAGS := $(CFLAGS)
|
|
|
|
|
|
$(OBJDIR)/%.o: src/core/%.c include/dumb.h include/internal/dumb.h
|
|
$(CCDV) $(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(OBJDIR)/%.o: src/helpers/%.c include/dumb.h
|
|
$(CCDV) $(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(OBJDIR)/resample.o: src/helpers/resample.inc
|
|
|
|
$(OBJDIR)/%.o: src/it/%.c include/dumb.h include/internal/it.h
|
|
$(CCDV) $(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(OBJDIR)/%.o: src/it/%.cpp include/dumb.h include/internal/it.h
|
|
$(CCDV) $(CXX) $(CFLAGS_BASE) -msse -Wall -W -c -o $@ $<
|
|
|
|
$(OBJDIR)/%.o: src/sigtypes/%.c include/dumb.h
|
|
$(CCDV) $(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(CORE_LIB_FILE): $(CORE_OBJECTS)
|
|
$(CCDV) $(AR) $(ARFLAGS) $@ $^
|