Mercurial > hg > Members > kono > tree_dandy2
view Makefile.mac @ 19:bdc882acda58
get_matrix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 09 Dec 2010 22:31:06 +0900 |
parents | c95b185b4c33 |
children | 3c14f64cbd31 |
line wrap: on
line source
# Makefile to build the SDL tests srcdir = . CC = gcc CFLAGS = -g -m32 -O2 -Wall `sdl-config --cflags` LIBS = `sdl-config --libs`,-framework,OpenGL -lSDL_mixer TARGET = my_dandy OBJS = sgoex.o Enemy.o bom.o tokuten.o atari.o count2.o move.o schedule.o tama.o syokika.o Ss.o sound.o main.o profile.o debug.o trace.o LoadSprite.o #back.o all: $(TARGET) test: $(TARGET) ./$(TARGET) -test $(TARGET): $(OBJS) $(CC) -o $@ $(OBJS) $(LIBS) clean: rm -f $(TARGET) $(OBJS) .c.o: $(CC) $(CFLAGS) $(INCLUDES) -c $< debug.o:debug.h