-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.ans
32 lines (21 loc) · 845 Bytes
/
Makefile.ans
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Makefile.ans
#
# This file is part of Tetris game.
# https://github.com/berk76/tetris
#
# Tetris is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version. <http://www.gnu.org/licenses/>
#
# Written by Jaroslav Beran <[email protected]>, on 25.7.2016
CC = cc
CFLAGS = -O2 -Wall -c -o $@
all: Tetris
Tetris: src/main_ans.o src/tetris.o src/shape.o
$(CC) -Wall -o $@ src/main_ans.o src/tetris.o src/shape.o
src/main_ans.o: src/main_ans.c src/main.h src/tetris.h
src/tetris.o: src/tetris.h src/main.h src/shape.h
src/shape.o: src/shape.h
clean:
rm -f src/*.o *.exe src/*.res Tetris