blob: 0d4c5fac8e0a01d9928c61fbfc74f682f3be10d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# FreeSCI/DOS Makefile
#
# 19991220 rink created this file
# 20000615 rink updated this file
#
#
TARGET : libsciengine.a
FILES = savegame.o kernel.o kscripts.o klists.o kfile.o kgraphics.o \
kmath.o kevent.o kstring.o kmenu.o ksound.o vm.o game.o \
scriptdebug.o heap.o simplesaid.o said.o grammar.o
CC = gcc
CFLAGS = -g -c -I../include -I../.. -D_DOS -DHAVE_LIBPNG -DHAVE_UNISTD_H
clean:
del *.o *.a
libsciengine.a: ${FILES}
ar r libsciengine.a ${FILES}
|