Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2020-10-26 19:48:35 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-10-26 19:48:35 +0300
commit0a36e61e8cca468b4b2c3122df8e27e49008d6ae (patch)
tree273d107714fa2f0574030ef1af9e56161ca32179
parentf2ec43a204a0b502e5456e48db0835071aa1c8ff (diff)
Removed LinuxExecutable
-rw-r--r--UVtools.WPF/LinuxExecutable/Makefile7
-rw-r--r--UVtools.WPF/LinuxExecutable/UVtoolsbin16608 -> 0 bytes
-rw-r--r--UVtools.WPF/LinuxExecutable/UVtools.c11
3 files changed, 0 insertions, 18 deletions
diff --git a/UVtools.WPF/LinuxExecutable/Makefile b/UVtools.WPF/LinuxExecutable/Makefile
deleted file mode 100644
index 3f95f7f..0000000
--- a/UVtools.WPF/LinuxExecutable/Makefile
+++ /dev/null
@@ -1,7 +0,0 @@
-all: UVtools clean
-UVtools: UVtools.o
- gcc -o UVtools UVtools.o
-UVtools.o: UVtools.c
- gcc -o UVtools.o -c UVtools.c -W -Wall -ansi -pedantic
-clean:
- rm -rf *.o \ No newline at end of file
diff --git a/UVtools.WPF/LinuxExecutable/UVtools b/UVtools.WPF/LinuxExecutable/UVtools
deleted file mode 100644
index 114ac0c..0000000
--- a/UVtools.WPF/LinuxExecutable/UVtools
+++ /dev/null
Binary files differ
diff --git a/UVtools.WPF/LinuxExecutable/UVtools.c b/UVtools.WPF/LinuxExecutable/UVtools.c
deleted file mode 100644
index bd3eab0..0000000
--- a/UVtools.WPF/LinuxExecutable/UVtools.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifdef __cplusplus__
- #include <cstdlib>
-#else
- #include <stdlib.h>
-#endif
-
-int main()
-{
- system("dotnet UVtools.dll");
- return 0;
-} \ No newline at end of file