Skip to content

Instantly share code, notes, and snippets.

@gps
Created February 21, 2009 07:20
Show Gist options
  • Save gps/67934 to your computer and use it in GitHub Desktop.
Save gps/67934 to your computer and use it in GitHub Desktop.
CFLAGS = g++ -m32 -ldl -Wall -Werror -ansi -pedantic -fno-elide-constructors
all : bin/testa.1.exe bin/testb.2.exe bin/testc.4.exe
bin/testa.1.exe : tests/testa.1.cc
g++ $(CFLAGS) -o bin/testa.1.cc tests/testa.1.cc obj/libvm_app.a
bin/testb.2.exe : tests/testb.2.cc
g++ $(CFLAGS) -o bin/testb.2.cc tests/testb.2.cc obj/libvm_app.a
bin/testc.4.exe : tests/testc.4.cc
g++ $(CFLAGS) -o bin/testc.4.cc tests/testc.4.cc obj/libvm_app.a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment