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 : build :
@echo "-> Building" @echo "-> Building"
@cd ~/go/src/editor/utils/; go build .; cd ..
@cd utils/; go build .; cd ..
@go build . @go build .
@echo "-> Done" @echo "-> Done"
run : run :
@echo "-> Running" @echo "-> Running"
@./editor $(FILE)
@./led $(FILE)
clean : clean :
@echo "-> Cleaning up" @echo "-> Cleaning up"
@-rm editor
@-rm led
testfile : testfile :
@echo -e "-> Generating test file" @echo -e "-> Generating test file"

+ 1
- 1
main.go View File

@ -6,8 +6,8 @@ import (
"log" "log"
"os" "os"
"editor/utils"
"fmt" "fmt"
"led/utils"
"os/exec" "os/exec"
"regexp" "regexp"
"strconv" "strconv"

Loading…
Cancel
Save