From 4ba35426d5fbab33676cfed5531d0686c4f0483d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Schl=C3=BCter?= Date: Mon, 24 Feb 2014 21:45:06 +0100 Subject: [PATCH] remove old Makefile --- .gitignore | 1 + Makefile | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 Makefile diff --git a/.gitignore b/.gitignore index e0a0d58..b2c792f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ CMakeCache.txt CMakeFiles/ cmake_install.cmake libclangPHPChecker.so +Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 6a1d1df..0000000 --- a/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -LLVM_CONFIG ?= llvm-config -CXX ?= clang++ - -FLAGS = `$(LLVM_CONFIG) --cxxflags` $(CXXFLAGS) - -PHPChecker.so: PHPZPPChecker.cpp - $(CXX) $(FLAGS) -shared -o PHPChecker.so PHPZPPChecker.cpp - -all: PHPChecker.so