aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/makefile.dos
blob: 6bfbb3fcf988f80089e903de8035e71cef801846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# FreeSCI/DOS Makefile
#
# 19991220              rink            created this file
#
#
TARGET  :       freesci.exe

FILES   =       main.o config.o
LIBS	=	engine/libsciengine.a graphics/scigraphics.a scicore/scicore.a \
		sound/scisound.a
		
CC	= gcc
CFLAGS  = -g -c -Iinclude -I../.. -D_DOS -DHAVE_LIBPNG -DHAVE_DGFX

clean:
		del *.o *.a

freesci.exe:	${FILES} ${LIBS}
		gcc -g -o freesci.exe ${FILES} ${LIBS} -lpng -lz