Skip to content

Commit c95f412

Browse files
author
Prathu Baronia
committed
Created a simple Makefile
Signed-off-by: Prathu Baronia <prathu.baronia@oneplus.com>
1 parent 384b6c1 commit c95f412

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
EXEC= psh
2+
SOURCES= main.c util.c psh_builtins.c
3+
4+
all: $(EXEC)
5+
6+
$(EXEC): $(SOURCES)
7+
gcc -o $@ $^
8+
9+
clean:
10+
rm $(EXEC)

0 commit comments

Comments
 (0)