Tetminal version of blackjack.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
156 B

2 years ago
include config.mk
2 years ago
c-jack: src/main.c src/dealer.c
$(CC) $^ -o $@ $(LDFLAGS)
2 years ago
%.o: src/%.c
2 years ago
$(CC) $(CFLAGS) $^ -c
2 years ago
clean:
rm -f *.o c-jack
.PHONY: clean