Archived
1
0
Fork 0
This repository has been archived on 2019-12-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
cscape/Makefile
2016-08-07 15:18:24 +02:00

12 lines
203 B
Makefile

CC=gcc
LDFLAGS=`sdl-config --libs` -lm
CFLAGS=-O3 -Wall -g `sdl-config --cflags`
all: cscape maptest
cscape: map.o mapcolors.o sdl.o
maptest: map.o mapcolors.o sdl.o
clean:
rm -f *.o maptest cscape