box-o-sand/PracticingAlgorithms/Makefile

15 lines
138 B
Makefile
Raw Normal View History

BINDIR := $(PWD)/bin
CFLAGS := -std=c99 -Wall -g
export BINDIR CFLAGS
all:
cd src && $(MAKE)
clean:
rm -f bin/*
.PHONY: all clean