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

13 lines
199 B
Makefile
Raw Normal View History

2002-05-20 12:40:35 +00:00
CC=gcc
2002-05-20 11:07:54 +00:00
LDFLAGS=`sdl-config --libs`
2002-05-20 12:40:35 +00:00
CFLAGS=-O3 -Wall -g `sdl-config --cflags`
2002-05-20 11:07:54 +00:00
all: cscape maptest
cscape: map.o mapcolors.o sdl.o
maptest: map.o mapcolors.o sdl.o
clean:
rm -f *.o maptest cscape