7 lines
70 B
Makefile
7 lines
70 B
Makefile
all: build
|
|
|
|
build: random
|
|
|
|
random: main.c
|
|
gcc main.c -Wall -o random
|