Skip to content

Instantly share code, notes, and snippets.

View awilfox's full-sized avatar
🦊
Mostly doing FOSS on weekends

A. Wilcox awilfox

🦊
Mostly doing FOSS on weekends
View GitHub Profile
@awilfox
awilfox / Makefile
Created October 7, 2012 01:02 — forked from duckinator/test.c
file=".tmp-`date +'%s'`.c"
test.c: a.out run
a.out:
@tail -n +2 test.c > ${file}
@gcc -std=c99 -ggdb -I. -DDEBUG ${REST} ${file}
@rm ${file}
run: a.out