From 862192dbebd24f32e24f051b5a88f1bb6d801be8 Mon Sep 17 00:00:00 2001 From: Ludvig Strigeus Date: Fri, 12 Oct 2001 08:22:12 +0000 Subject: 'make dist' supported svn-id: r3432 --- Makefile | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fb6c4ca2b4..7757dc9e74 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,23 @@ CC = gcc -CFLAGS = -g -O2 -Wno-multichar +CFLAGS = -g -Wno-multichar DEFINES = -DUNIX -LDFLAGS = `sdl-config --libs` -INCLUDES= `sdl-config --cflags` +LDFLAGS := `sdl-config --libs` +INCLUDES:= `sdl-config --cflags` CPPFLAGS= $(DEFINES) $(INCLUDES) +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 sdl.o - + +DISTFILES=actor.cpp boxes.cpp costume.cpp gfx.cpp object.cpp resource.cpp \ + saveload.cpp script.cpp scummvm.cpp sound.cpp string.cpp \ + sys.cpp verbs.cpp sdl.cpp \ + Makefile scumm.h scummsys.h stdafx.h stdafx.cpp windows.cpp \ + whatsnew.txt readme.txt copying.txt scummvm.dsp scummvm.dsw + .cpp.o: $(CC) $(CFLAGS) $(CPPFLAGS) -c $(<) @@ -22,5 +29,9 @@ scummvm: $(OBJS) clean: rm -f $(OBJS) scummvm +dist: + rm -f $(ZIPFILE) + zip -q $(ZIPFILE) $(DISTFILES) + check: $(OBJS): $(INCS) -- cgit v1.2.3