This repository has been archived on 2023-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
blackjack/makefile

17 lines
204 B
Makefile
Raw Permalink Normal View History

2021-03-24 20:12:47 +01:00
CC = gcc
CFLAGS = -Wall -Wextra
ALL = blackjack
CLEAN = rm -f *.o
all: $(ALL)
blackjack: blackjack.o
$(CC) $^ -o blackjack -lncurses
$(CLEAN)
%.o: %.c
$(CC) $(CFLAGS) -c $<
clean:
$(CLEAN) $(ALL)