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

FILES   =       console.o tools.o resource.o decompress0.o decompress1.o \
                script.o vocab.o vocab_debug.o  old_objects.o sci_dos.o
		
CC	= gcc
CFLAGS	= -g -c -I../include -I../.. -D_DOS -DHAVE_LIBPNG -DHAVE_UNISTD_H

clean:
		del *.o *.a

scicore.a:      ${FILES}
		ar r scicore.a ${FILES}