8 lines
127 B
Makefile
8 lines
127 B
Makefile
CC=gcc --std=gnu99 -g
|
|
output=myCounter
|
|
|
|
all: main.c main.h
|
|
$(CC) main.c -o $(output)
|
|
|
|
clean:
|
|
rm -fr *.o vgcore.* $(output)
|