From a868afa4e20c35212b0b85ac048e295555226d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Mon, 2 Apr 2012 20:58:41 +0200 Subject: [PATCH] Removing Collumn.o from Makefile --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index c55a635..bbe6bef 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,6 @@ SQLITE_EXAMPLE1_OBJECTS = \ $(BUILD)/main.o \ $(BUILD)/Database.o \ $(BUILD)/Statement.o \ - $(BUILD)/Column.o \ ### Targets: ### @@ -62,9 +61,6 @@ $(BUILD)/Database.o: src/SQLiteC++/Database.cpp $(BUILD)/Statement.o: src/SQLiteC++/Statement.cpp $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $< -$(BUILD)/Column.o: src/SQLiteC++/Column.cpp - $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $< - .PHONY: all clean