summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralex <alex@ASUS>2018-10-19 13:38:17 +0200
committeralex <alex@ASUS>2018-10-19 13:38:17 +0200
commit648c9aa9fca19cbf3730029691500fa92c1ad323 (patch)
tree6a065828f19811b9e44e896783d1cbfc4bad40d9
parent0663633d85d8c100b5284906c108e3fa878ff57d (diff)
Version 1.0v1.01
-rw-r--r--.gitignore2
-rw-r--r--Makefile6
-rw-r--r--bin/Makefile4
3 files changed, 5 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index bd81bcb..b4aac35 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
*.o
*.s
-bin/vision-artificial
+bin/vision-artificial1
diff --git a/Makefile b/Makefile
index 7bb03eb..4742632 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
-VERSION = 0
-PATCHLEVEL = .6
+VERSION = 1
+PATCHLEVEL = .0
SUBLEVEL =
EXTRAVERSION =
NAME =
@@ -101,7 +101,7 @@ export SHARE_DIR
################################################################################
# executables
-BIN_NAME = vision-artificial
+BIN_NAME = vision-artificial1
export BIN_NAME
diff --git a/bin/Makefile b/bin/Makefile
index f2b10ca..5965246 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -8,8 +8,6 @@ MODULES_TMP_DIR = $(MODULES_DIR)/tmp/
TMP_DIR = $(MAIN_DIR)/tmp/
# dependencies
-_ALL = vision-artificial
-
ALL = $(BIN_NAME)
MAIN_OBJ_LIBALX = alx_lib.o
@@ -33,7 +31,7 @@ $(BIN_NAME): $(MAIN_OBJS)
clean:
- $(Q)rm -f $(_ALL)
+ $(Q)rm -f $(ALL)
@echo "Clean binaries"
################################################################################