This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
leviolson
/
led
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fixing naming issues
master
Levi Olson
6 years ago
parent
1c54b49448
commit
390c090207
2 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
Makefile
+1
-1
main.go
+ 3
- 3
Makefile
View File
@ -13,17 +13,17 @@ build_and_run: clean build run
build
:
@echo
"-> Building"
@cd
~/go/src/editor/
utils/
;
go build .
;
cd
..
@cd utils/
;
go build .
;
cd
..
@go build .
@echo
"-> Done"
run
:
@echo
"-> Running"
@./ed
itor
$(
FILE
)
@./
l
ed
$(
FILE
)
clean
:
@echo
"-> Cleaning up"
@-rm ed
itor
@-rm
l
ed
testfile
:
@echo -e
"-> Generating test file"
+ 1
- 1
main.go
View File
@ -6,8 +6,8 @@ import (
"log"
"os"
"editor/utils"
"fmt"
"led/utils"
"os/exec"
"regexp"
"strconv"
Write
Preview
Loading…
Cancel
Save