Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
L
linked_list2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Liam E. Roeth
linked_list2
Commits
4f7b3269
Commit
4f7b3269
authored
Sep 19, 2020
by
Liam E. Roeth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update makefile
add tabify target to convert all spaces to tabs made run the default target
parent
2a252acf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
Makefile
Makefile
+14
-7
No files found.
Makefile
View file @
4f7b3269
test
:
test
.out
./
test
.out
run
:
main
.out
./
main
.out
.PHONY
:
run compile test
.PHONY
:
run compile test
tabify
test.out
:
llist.c llist.h
main
.c
gcc
-std
=
c99
-o
test.out llist.c test.c
test.out
:
llist.c llist.h
test
.c
gcc
-
ggdb
-
std
=
c99
-o
test.out llist.c test.c
main.out
:
llist.c llist.h main.c
gcc
-std
=
c99
-o
main.out llist.c main.c
compile
:
test.out main.out
run
:
main.out
./main.out
test
:
test.out
./test.out
tabify
:
*.h
for
file
in
*
.c
*
.h
;
\
do
\
unexpand
-t4
--first-only
$$
file
>
temp
;
\
mv
temp
$$
file
;
\
done
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