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
2002-05-20 12:40:35 +00:00

12 lines
199 B
Makefile

CC=gcc
LDFLAGS=`sdl-config --libs`
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