Makefile
author viric@llimona
Fri, 05 May 2006 23:43:20 +0200
changeset 4 d9259a605dec
parent 3 29cc57a9678e
child 5 9d1e320acbb0
permissions -rw-r--r--
A cleaner version, split between different files.

CC=gcc

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

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

all: sokosol

sokosol: map.o sokosol.o

map.c: general.h
sokosol.c: general.h

clean:
	rm -f sokosol *.o