Makefile 239 B

12345678
  1. all: co repeat
  2. co: co.cc
  3. g++ co.cc -I../.. -I../../include -DHAVE_CONFIG_H -L../../lib -lswoole -o co -g
  4. repeat: repeat.cc
  5. g++ repeat.cc -I../.. -I../../include -DHAVE_CONFIG_H -L../../lib -lswoole -o repeat -g
  6. clean:
  7. rm -f co repeat