view Makefile @ 11:2105d2dfefa3

Try to adjust blitting with SDL surface pitch. Might fix something.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 May 2010 18:47:16 +0300
parents acb5694e93d9
children c3622b53a23e
line wrap: on
line source

all: pwplib.a
	cd peluce; make
	cd nykyaeka; make
	cd oldchsool; make

./configure:
	$(CC) configure.c -o configure

pwplib/Makefile: ./configure
	./configure
	exit 123

pwplib.a: pwplib/Makefile
	cd pwplib; make

clean:
	rm -f *~ ./configure ./configure.exe
	cd pwplib; make clean; rm -f Makefile
	cd peluce; make clean; rm -f Makefile
	cd nykyaeka; make clean; rm -f Makefile
	cd oldchsool; make clean; rm -f Makefile

linux: ./configure
	./configure linux
	make all

sdl: ./configure
	./configure sdl
	make all

unix: ./configure
	./configure unix
	make all

hpux: ./configure
	./configure hpux
	make all

cygwin: ./configure
	./configure cygwin
	make all

win32: ./configure
	./configure win32
	make all