Makefile
author viric@llimona
Sat, 06 May 2006 00:34:04 +0200
changeset 6 bfbca2c0fc70
parent 5 9d1e320acbb0
child 7 834620831e7a
permissions -rw-r--r--
More file separation.

CC=gcc

# OPT
#CFLAGS=-march=athlon-xp -pipe -O3 -Wall

# DEBUG
CFLAGS=-Wall -g -pg
LDFLAGS=-pg -Wall

all: sokosol

sokosol: map.o sokosol.o os.o algorithm.o

map.c: general.h
sokosol.c: general.h
os.c: general.h
algorithm.c: general.h

clean:
	rm -f sokosol *.o