From 06263f82dd2ff09526397eab8530615ce0a1609e Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 10 Jun 2014 16:02:45 +0100 Subject: [PATCH] Remove now unused file --- source/backend/standalone/Makefile | 38 ------------------------------ 1 file changed, 38 deletions(-) delete mode 100644 source/backend/standalone/Makefile diff --git a/source/backend/standalone/Makefile b/source/backend/standalone/Makefile deleted file mode 100644 index 28b059af4..000000000 --- a/source/backend/standalone/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/make -f -# Makefile for carla-standalone # -# ----------------------------- # -# Created by falkTX -# - -include ../Makefile.mk - -# -------------------------------------------------------------- - -TARGETS = \ - ../carla_standalone.a - -# -------------------------------------------------------------- - -all: $(TARGETS) - -# -------------------------------------------------------------- - -clean: - $(RM) $(OBJS) - $(RM) $(TARGETS) - -debug: - $(MAKE) DEBUG=true - -# -------------------------------------------------------------- - -../carla_standalone.a: $(OBJS) - $(RM) $@ - $(AR) crs $@ $^ - -# -------------------------------------------------------------- - -CarlaStandalone.cpp.o: CarlaStandalone.cpp $(CARLA_STANDALONE_CPP_DEPS) - $(CXX) $< $(BUILD_CXX_FLAGS) $(QTCORE_FLAGS) -c -o $@ - -# --------------------------------------------------------------