mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-16 15:08:59 +00:00
2b50dd2742
svn-id: r4111
35 lines
1023 B
Makefile
35 lines
1023 B
Makefile
# $Header$
|
|
# This file is used by Makefile, Makefile.irix, Makefile.macosx and declares
|
|
# common rules, a list of common object files etc.
|
|
|
|
ZIPFILE := scummvm-`date '+%Y-%m-%d'`.zip
|
|
|
|
INCS = scumm.h scummsys.h stdafx.h
|
|
|
|
OBJS += actor.o boxes.o costume.o gfx.o object.o resource.o \
|
|
saveload.o script.o scummvm.o sound.o string.o \
|
|
sys.o verbs.o script_v1.o script_v2.o debug.o gui.o \
|
|
sound/imuse.o sound/fmopl.o sound/mixer.o debugrl.o \
|
|
akos.o vars.o insane.o gameDetector.o init.o \
|
|
v3/resource_v3.o v4/resource_v4.o 2xsai.o main.o \
|
|
simon/midi.o simon/simon.o simon/simonsys.o sound/mididrv.o config-file.o
|
|
|
|
DISTFILES=$(OBJS:.o=.cpp) Makefile scumm.h scummsys.h stdafx.h stdafx.cpp \
|
|
debugrl.h whatsnew.txt readme.txt copying.txt \
|
|
scummvm.dsp scummvm.dsw sound/fmopl.h gui.h sound.h
|
|
|
|
.cpp.o:
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $(<) -o $*.o
|
|
|
|
all: scummvm$(EXEEXT)
|
|
|
|
scummvm$(EXEEXT): $(OBJS)
|
|
$(CC) $(LDFLAGS) -o $(@) $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f $(OBJS) scummvm$(EXEEXT)
|
|
|
|
$(OBJS): $(INCS)
|
|
|
|
.PHONY: all clean dist
|