mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-07 06:12:24 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
8 lines
131 B
Makefile
8 lines
131 B
Makefile
all : parser.go
|
|
|
|
parser.go : parser.go.y
|
|
goyacc -o $@ parser.go.y; [ -f y.output ] && ( rm -f y.output )
|
|
|
|
clean:
|
|
rm -f parser.go
|