Skip to content

Instantly share code, notes, and snippets.

@michaelgautier
Created November 3, 2016 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelgautier/64ce2a9cfb6b0adba77fd4d87248b0df to your computer and use it in GitHub Desktop.
Save michaelgautier/64ce2a9cfb6b0adba77fd4d87248b0df to your computer and use it in GitHub Desktop.
Allegro 5 Graphics Library Makefile - ver 20161103
gautier_rss : obj/main.o
$(CXX) -std=c++14 -o $@ $< ../../../liblocal/liballegro_gcc/lib/liballegro-static.a ../../../liblocal/liballegro_gcc/lib/liballegro_main-static.a ../../../liblocal/liballegro_gcc/lib/liballegro_color-static.a ../../../liblocal/liballegro_gcc/lib/liballegro_primitives-static.a `pkg-config --static --libs ../../../liblocal/liballegro_gcc/lib/pkgconfig/allegro-static-5.pc`
obj/main.o : ../src/main.cxx
rm -rf obj/
mkdir obj
$(CXX) -c -g -std=c++14 -isystem ../../../liblocal/liballegro_gcc/include -o $@ $<
#/*Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 . Software distributed under the License is distributed on an "AS IS" BASIS, NO WARRANTIES OR CONDITIONS OF ANY KIND, explicit or implicit. See the License for details on permissions and limitations.*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment