This website works better with JavaScript.
Home
Explore
Help
Sign In
dom
/
housic
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add Makefile
master
Dominik Schmidt-Philipp
4 years ago
parent
708a599788
commit
6237bb5e5e
2 changed files
with
16 additions
and
0 deletions
Split View
Show Diff Stats
+2
-0
.gitignore
+14
-0
Makefile
+ 2
- 0
.gitignore
View File
@@ -1 +1,3 @@
*~
*.o
housic
+ 14
- 0
Makefile
View File
@@ -0,0 +1,14 @@
CC = gcc
exe = housic
src = $(wildcard *.c)
obj = $(src:.c=.o)
LDFLAGS =
$(exe): $(obj)
$(CC) -o $@ $^ $(LDFLAGS)
.PHONY: clean
clean:
rm -f $(obj) $(exe)
Write
Preview
Loading…
Cancel
Save