GITLAB
rsimonin
/
ima3_projet_pa_2019
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
221b9e16aef758fe4a2b4b838ed1dfe41d350fa7
Authored by
rsimonin
2019-04-01 21:38:02 +0200
1 parent
075f46e2
makefile
Showing
1 changed file
with
10 additions
and
0 deletions
Show diff stats
Makefile
Inline
Side-by-side
Makefile
0 → 100644
Wrap text
Show/Hide comments
View file @
221b9e1
...
...
@@ -0,0 +1,10 @@
1
+all : $(EXEC)
2
+
3
+$(EXEC): arbre.o
4
+ gcc -g -c $@ $^
5
+
6
+arbre.o : arbre.c
7
+ gcc -g -c $<
8
+
9
+clean :
10
+ rm -f *.o $(EXEC)
...
...