We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a852ae commit a9970e3Copy full SHA for a9970e3
labs/04/calculator_v2_linux_zoo/Makefile
@@ -0,0 +1,11 @@
1
+all:
2
+ yacc -d simplecalc.y
3
+ lex simplecalc.l
4
+ gcc y.tab.c lex.yy.c -o simplecalc
5
+
6
+clean:
7
+ rm -rf simplecalc
8
+ rm -rf lex.yy.c
9
+ rm -rf y.tab.c
10
+ rm -rf y.tab.h
11
+ rm -rf y.tab.h.gch
0 commit comments