Makefile 121 B

1234567891011
  1. default: clean compile
  2. clean:
  3. rm -rf app
  4. compile:
  5. go build -o app
  6. # image:
  7. # docker build -t nchursin/careers-bot .