Browse Source

Fixing naming issues

master
Levi Olson 5 years ago
parent
commit
390c090207
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      Makefile
  2. +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"
@./editor $(FILE)
@./led $(FILE)
clean :
@echo "-> Cleaning up"
@-rm editor
@-rm led
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"

Loading…
Cancel
Save