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

main: main.c
	cc main.c -Wall -lSDL2 -lSDL2_ttf -o mine_sweeper

# end