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

8
src/Makefile Normal file
View File

@@ -0,0 +1,8 @@
all: $(BINDIR)/insertion-sort
$(BINDIR)/insertion-sort: insertion-sort.c
gcc -o $@ $(CFLAGS) $^
.PHONY: all