9 lines
59 B
Makefile
9 lines
59 B
Makefile
CC = gcc
|
|
|
|
all: main
|
|
|
|
main:
|
|
$(CC) *.c *.h
|
|
|
|
clean:
|
|
rm a.out
|