File tree 3 files changed +33
-8
lines changed
3 files changed +33
-8
lines changed Original file line number Diff line number Diff line change
1
+ APP_NAME := mdtodo
2
+ INSTALL_DIR := /usr/local/bin
3
+ SRC_DIR := .
4
+ BUILD_DIR := ./bin
5
+ BIN := $(BUILD_DIR ) /$(APP_NAME )
6
+
7
+ .PHONY : all build install clean
8
+
9
+ all : build
10
+
11
+ build :
12
+ @echo " Building $( APP_NAME) ..."
13
+ @mkdir -p $(BUILD_DIR )
14
+ @go build -o $(BIN ) $(SRC_DIR )
15
+
16
+ install : build
17
+ @echo " Installing $( APP_NAME) ..."
18
+ @sudo install -m 755 $(BIN ) $(INSTALL_DIR ) /$(APP_NAME )
19
+ @echo " $( APP_NAME) installed to $( INSTALL_DIR) "
20
+
21
+ clean :
22
+ @echo " Cleaning up..."
23
+ @rm -rf $(BUILD_DIR )
Original file line number Diff line number Diff line change 1
1
# Todo
2
2
3
- ## asd
4
-
5
3
## Main
6
4
- [x] loading
7
5
- [x] delete project
10
8
- [x] edit task
11
9
- [ ] select next post delete
12
10
- [x] Esp on task add
13
- - [ ] key bindings
14
- - [ ] status bar
15
11
- [x] autosave
16
12
- [x] hide done
17
- - [ ] hide empty projects
13
+ - [ ] help
14
+ - [ ] key bindings
15
+ - [ ] status bar
18
16
- [x] Dirty Flag
19
17
- [x] Rename projects
20
18
- [x] reorder projects
21
- - [ ] help
19
+ - [ ] Version numbers
20
+ - [ ] hide empty projects
21
+ - [ ] Highlight what will be deleted
22
+ - [ ] param for todo
22
23
23
24
## Later Ideas
24
- - [ ] install
25
+ - [x ] install
25
26
- [ ] Undo Stack
26
27
- [ ] cut/copy tasks
27
28
- [ ] Move task between projects
28
29
- [ ] Notes after todo
29
30
- [ ] Notes project
31
+ - [ ] Global todo
30
32
31
33
## test 2
32
34
- [ ] asd
36
38
- [ ] adasdasd
37
39
- [ ] TESTING
38
40
- [ ] TESTING123
39
- - [ ] TESTING123asd
41
+ - [ ] TESTING123asd
40
42
You can’t perform that action at this time.
0 commit comments