CXX = g++ CXXFLAGS = -c -g `llvm-config --cflags` LIBS = -g `llvm-config --ldflags --libs core executionengine interpreter` default: test6 test6: test6.o $(CXX) test6.o $(LIBS) -o $@ test6.o: test6.cpp $(CXX) $(CXXFLAGS) test6.cpp