summaryrefslogtreecommitdiff
path: root/tct-system-settings-tizen-tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tct-system-settings-tizen-tests/Makefile')
-rw-r--r--tct-system-settings-tizen-tests/Makefile48
1 files changed, 0 insertions, 48 deletions
diff --git a/tct-system-settings-tizen-tests/Makefile b/tct-system-settings-tizen-tests/Makefile
deleted file mode 100644
index 8f7b62d..0000000
--- a/tct-system-settings-tizen-tests/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-
-ifndef config
- config=debug
-endif
-
-ifndef verbose
- SILENT = @
-endif
-
-PROJECTS := tct-system-settings-tizen-tests
-
-CSC = mcs
-
-.PHONY: all clean help $(PROJECTS) prebuild prelink
-
-ifeq ($(config),debug)
- FLAGS = /debug /noconfig /d:DEBUG
-endif
-
-ifeq ($(config),release)
- FLAGS = /optimize /noconfig /d:NDEBUG
-endif
-
-FLAGS += /t:exe
-
-TARGETDIR = bin
-OBJDIR = obj
-TARGET = $(TARGETDIR)/$(PROJECTS).exe
-SOURCES = $(wildcard src/**/*.cs src/*.cs)
-null :=
-space := $(null) #
-comma := ,
-DLLS = $(wildcard lib/*.dll)
-ifneq ("$(DLLS)", "")
- REFERENCE = "/reference:$(subst $(space),$(comma),$(DLLS))"
-endif
-
-all: $(TARGETDIR) $(TARGET)
-
-$(TARGET): $(SOURCES) $(DLLS)
- @echo "=== Building $(PROJECTS) ($(config))"
- $(SILENT) $(CSC) /nologo /out:$@ $(REFERENCE) $(FLAGS) $(SOURCES)
-
-$(TARGETDIR):
- $(SILENT) mkdir -p $(TARGETDIR)
-
-clean:
- $(SILENT) rm -rf $(TARGETDIR)