Skip to content

Commit

Permalink
Update .gitignore and cleanup Makefile (VirusTotal#39)
Browse files Browse the repository at this point in the history
Update the .gitignore files to include *.swp and j2y.

While here, also fixup the Makefile as the release target is broken. It depends
upon two targets (parser and lexer) that do not exist. I'm guessing this
Makefile is not really used and is a holdover from the Northern-Lights repo?
  • Loading branch information
wxsBSD authored Oct 15, 2021
1 parent 6cbe65e commit f9cdd7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
*.swp
y2j
j2y
!y2j/
y2j-linux
y2j-mac
y2j.exe
y.output
yara-parser
yara-parser
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ j2y:
y2j:
go build github.com/VirusTotal/gyp/cmd/y2j

release: parser lexer
release:
GOOS=linux go build -o y2j-linux github.com/VirusTotal/gyp/cmd/y2j
GOOS=darwin go build -o y2j-mac github.com/VirusTotal/gyp/cmd/y2j
GOOS=windows go build -o y2j.exe github.com/VirusTotal/gyp/cmd/y2j
Expand Down

0 comments on commit f9cdd7c

Please sign in to comment.