11 lines
151 B
Makefile
11 lines
151 B
Makefile
CC = gcc
|
|
CFLAGS = -std=c99 -Wall -g
|
|
LDFLAGS =
|
|
|
|
answer01: answer01.c
|
|
$(CC) answer01.c -o answer01
|
|
|
|
answer02: answer02.c
|
|
$(CC) answer02.c -o answer02
|
|
|