Makefile
author viric@llimona
Sat, 06 May 2006 00:33:47 +0200
changeset 5 9d1e320acbb0
parent 4 d9259a605dec
child 7 834620831e7a
permissions -rw-r--r--
Adding -Wall to ldflags

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