finger/Makefile

6 lines
98 B
Makefile

CC = gcc
CFLAGS = -Wall -Wextra -std=c99 -pedantic -g
finger: finger.c
$(CC) $(CFLAGS) $< -o $@