Skip to content

Instantly share code, notes, and snippets.

View captainpete's full-sized avatar

Peter Hollows captainpete

View GitHub Profile
@captainpete
captainpete / Makefile
Created May 15, 2011 22:18 — forked from wezm/Makefile
Text processor for some strangely formatted geo data
CFLAGS = -O2 -Wall $(OPTFLAGS)
CC = clang
SOURCES = $(wildcard *.c)
OBJECTS := $(patsubst %.c, %.o, $(SOURCES))
all : main
main : $(OBJECTS)
$(CC) -o main $(CFLAGS) $(OBJECTS)