mirror of
https://github.com/Comp211-SP24/project-Rushilwiz.git
synced 2025-04-03 04:00:16 -04:00
24 lines
343 B
Makefile
Executable File
24 lines
343 B
Makefile
Executable File
CC=gcc
|
|
CFLAGS=-c -Wall -Werror -g
|
|
SO_FLAGS=-fPIC -shared
|
|
|
|
all: main
|
|
|
|
main: shell.o main.o
|
|
$(CC) shell.o main.o -o main
|
|
|
|
shell.o: shell.c shell.h
|
|
$(CC) $(CFLAGS) $(SO_FLAGS) shell.c
|
|
|
|
main.o: main.c shell.h
|
|
$(CC) $(CFLAGS) main.c
|
|
|
|
clean:
|
|
/bin/rm -f main *.o *.gz
|
|
|
|
run:
|
|
./main
|
|
|
|
for_autograder: shell.o
|
|
$(CC) $(SO_FLAGS) -o shell.so shell.o
|