Project

General

Profile

Hello World (CC++) ยป Makefile

Noah Zins, 09/26/2025 09:03 PM

 
all: hello.o
${CC} hello.o -o hello
hello.o: hello.c
${CC} -I . -c hello.c
clean:
rm -rf *.o
rm hello
    (1-1/1)