git-subtree-dir: PracticingAlgorithms git-subtree-mainline: 0a9428093ce0fdea72ed2cfc1050521aba018c87 git-subtree-split: 0b723f2ae0a20ab8c90c33db8c1d9d9acd76a86f
15 lines
138 B
Makefile
15 lines
138 B
Makefile
BINDIR := $(PWD)/bin
|
|
CFLAGS := -std=c99 -Wall -g
|
|
|
|
export BINDIR CFLAGS
|
|
|
|
|
|
all:
|
|
cd src && $(MAKE)
|
|
|
|
clean:
|
|
rm -f bin/*
|
|
|
|
|
|
.PHONY: all clean
|