← Back to ratslair.com
aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 08ed642aab00e389f6f1249ddcb341c29c2eaaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
##
# Doom
#
# @main.c
# @version 0.1

main: main.c
	cc main.c -Wall -lSDL2 -lSDL2_ttf -lm -o doom

map maker: maker.c
	cc maker.c -Wall -lSDL2 -lSDL2_ttf -o maker
# end