-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_
More file actions
22 lines (15 loc) · 667 Bytes
/
_
File metadata and controls
22 lines (15 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: clean BasicShell
BasicShell: main.o arguments.o execute.o history.o builtinsfunc.o
gcc -g -Wall -o BasicShell main.o execute.o history.o builtinsfunc.o arguments.o
main.o: main.c arguments.h execute.h history.h builtinsfunc.h
gcc -g -Wall -c main.c
arguments.o: arguments.c arguments.h
gcc -g -Wall -c arguments.c
execute.o: execute.c execute.h arguments.h builtinsfunc.h
gcc -g -Wall -c execute.c
history.o: history.c history.h
gcc -g -Wall -c history.c
builtinsfunc.o: builtinsfunc.c builtinsfunc.h
gcc -g -Wall -c builtinsfunc.c
clean:
rm -f BasicShell *.o