Skip to content

Commit 819bf56

Browse files
add makefile for P1
1 parent 1006e40 commit 819bf56

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.vscode/c_cpp_properties.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [],
9+
"compilerPath": "/usr/bin/clang",
10+
"cStandard": "c11",
11+
"cppStandard": "c++14",
12+
"intelliSenseMode": "linux-clang-x64"
13+
}
14+
],
15+
"version": 4
16+
}

P1/makefile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
run_shell: shell.c
2+
gcc shell.c -o shell.o
3+
./shell.o

0 commit comments

Comments
 (0)