futzing around with C and Ruby implementations

This commit is contained in:
Dan Buch
2011-08-17 23:07:18 -04:00
parent c8d657d3c1
commit 43db7108aa
8 changed files with 98 additions and 3 deletions

14
Makefile Normal file
View File

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