view Makefile @ 19:16efabca7e04

Some work on making the audio work .. there is sound, but it's not correct. Also some buffer overflows seem to happen, so there will eventually be a crash.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 15 Mar 2013 20:27:12 +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 $@ $<