Skip to content

Instantly share code, notes, and snippets.

@titouanc
Last active December 16, 2015 21:59
Show Gist options
  • Select an option

  • Save titouanc/5503490 to your computer and use it in GitHub Desktop.

Select an option

Save titouanc/5503490 to your computer and use it in GitHub Desktop.
CC = g++
CFLAGS = -Wall -Wextra
OBJS = Tree.o SplitGame.o
LDFLAGS =
all: mainProjLang
%.o : %.cpp
${CC} ${CFLAGS} -c -o $@ $<
%: %.o ${OBJS}
${CC} ${LDFLAGS} -o $@ $^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment