Makefile 189 B

12345678910111213
  1. FLAGS := -Wno-write-strings
  2. all: hotspotex hotspotver
  3. hotspotex: hotspotex.cpp
  4. g++ $(FLAGS) -o $@ $<
  5. hotspotver: hotspotver.cpp
  6. g++ $(FLAGS) -o $@ $<
  7. clean:
  8. rm hotspotex hotspotver