Skip to content

Instantly share code, notes, and snippets.

@mustpax
Created June 30, 2011 05:02
Show Gist options
  • Save mustpax/1055667 to your computer and use it in GitHub Desktop.
Save mustpax/1055667 to your computer and use it in GitHub Desktop.
Skeleton Makefile
# Basic compilation rules for some common file formats
TARGETS = # Actual files here
.coffee.js :
coffee -c $<
.SUFFIXES: .js .coffee
SRC=$(wildcard *.c)
OBJS=$(SRC:.c=.o)
all: $(OBJS)
# C rules
executable: $(SRC)
gcc -o $@ $^ $(CFLAGS) $(LIBS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment