Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
krkane
/
Rüütli Vaev
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
1
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1217abc6
authored
May 01, 2024
by
grlabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete Makefile
parent
f0dcd941
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
35 deletions
Source/Makefile
Source/Makefile
deleted
100644 → 0
View file @
f0dcd941
#Compiler
CC
=
gcc
#Compilation standard
STD
=
-std
=
c99
# flags for compilation
# -Wall "all" warnings
# -Wextra additional warnings
# -Wconversion warnings for missing type casts
# -g enable debugging symbols
CFLAGS
=
$(STD)
-Wall
-Wextra
-Wconversion
-g
-Wno-implicit-function-declaration
all
:
game
game
:
main.o gameBase.o loader.o
@
echo
"Linking and producing the final application"
$(CC)
-o
$(CFLAGS)
main.o gameBase.o loader.o
-o
game
@
chmod +x game
main.o
:
main.c Header.h
$(CC)
$(CFLAGS)
-c
main.c
gameBase.o
:
gameBase.c Header.h
$(CC)
$(CFLAGS)
-c
gameBase.c
loader.o
:
loader.c Header.h
$(CC)
$(CFLAGS)
-c
loader.c
clean
:
@
echo
"Removing everything but the source files!"
rm main.o gameBase.o loader.o game
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment