advent-of-code

advent of code attempts
git clone git://bvnf.space/advent-of-code.git
Log | Files | Refs

Makefile (112B)


      1
      2
      3
      4
      5
      6
      7
      8
      9
     10
.POSIX:

CFLAGS = -Wall -Wextra -pedantic -Og -g -D_XOPEN_SOURCE=500

all: a b
a: a.c
b: b.c

clean:
	rm -f a b