Project

General

Profile

Hello World ยป Makefile

Noah Zins, 09/26/2025 08:16 PM

 
1
all: hello.o
2
	${CC} hello.o -o hello
3
hello.o: hello.c
4
	${CC} -I . -c hello.c
5
clean:
6
	rm -rf *.o
7
	rm hello
    (1-1/1)
    Go to top
    Add picture from clipboard (Maximum size: 1 GB)