7 lines
68 B
Makefile
7 lines
68 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall
|
|
all: hello
|
|
|
|
hello: hello.o
|
|
hello.o: hello.c
|