view Makefile @ 13:3a358d053ffc

Runs now, audio does not work yet and the pace seems slightly too fast (not sure if that is the case however.)
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 15 Mar 2013 17:27:26 +0200
parents df40b5e4ca71
children 2ac93f2b93ae
line wrap: on
line source

# mAKEFiLE fOR 3x666 bY oCSA
CC = gcc

CFLAGS = -O3 -march=core2

CFLAGS += -g -Wall `sdl-config --cflags`
LDFLAGS = `sdl-config --libs` -lm

3x666: 3x666.o
	$(CC) -o $@ $+ $(LDFLAGS)

3x666.o: 3x666.c config.h 3xfont.h
	$(CC) $(CFLAGS) -c -o $@ $<