Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Denis Lukash
assignment-2-dictionary
Commits
04dfa1b5
Commit
04dfa1b5
authored
2 months ago
by
Denis Lukash
Browse files
Options
Download
Email Patches
Plain Diff
Update makefile
parent
c76d1207
master
No related merge requests found
Pipeline
#111004
passed with stages
in 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
makefile
makefile
+7
-7
No files found.
makefile
View file @
04dfa1b5
...
...
@@ -8,17 +8,17 @@ LINKER_FLAG= -o
all
:
program
lib
.o
:
lib
.asm
$(COMPILER)
$(COMPILER_FLAGS)
$<
$(LINKER_FLAG)
lib.o
%
.o
:
%
.asm
$(COMPILER)
$(COMPILER_FLAGS)
$<
-o
$@
dict.o
:
dict.asm lib.
o
$(COMPILER)
$(COMPILER_FLAGS)
$<
$(LINKER_FLAG)
dict.o
dict.o
:
dict.asm lib.
inc
$(COMPILER)
$(COMPILER_FLAGS)
$<
$(LINKER_FLAG)
$@
main.o
:
main.asm lib.
o
dict.
o
$(COMPILER)
$(COMPILER_FLAGS)
$<
$(LINKER_FLAG)
main.o
main.o
:
main.asm lib.
inc words.inc
dict.
inc
$(COMPILER)
$(COMPILER_FLAGS)
$<
$(LINKER_FLAG)
$@
program
:
lib.o dict.o main.o
$(LOAD)
$(LINKER_FLAG)
program
$^
$(LOAD)
$(LINKER_FLAG)
$@
$^
test
:
program
python3 test.py
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help