Skip to content

Instantly share code, notes, and snippets.

@LilinYume
Created April 5, 2015 08:43
Show Gist options
  • Save LilinYume/1782e6d996b897486914 to your computer and use it in GitHub Desktop.
Save LilinYume/1782e6d996b897486914 to your computer and use it in GitHub Desktop.
CXX = g++
INCEDIR = -I/usr/local/include
LIBDIR = -L/usr/local/lib
LIBS = -lfltk -lX11 -lXext -lXft -lfontconfig -lm -ldl
all:
@($(CXX) *.cpp $(INCEDIR) $(LIBDIR) $(LIBS))
clean:
rm -f *.o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment