9 lines
127 B
Makefile
9 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)
|