mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-08 11:57:25 +00:00
fa6e10e9ce
svn-id: r38192
23 lines
567 B
Plaintext
23 lines
567 B
Plaintext
#
|
|
# 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}
|