Newer
Older
monitord / simpleopt / Makefile
@root root on 23 Jan 2012 378 bytes Migration from SVN revision 455
  1. CC=g++
  2. CFLAGS=-Wall
  3. CPPFLAGS=-Wall
  4.  
  5. OBJS=fullSample.o basicSample.o globSample.o
  6.  
  7. all: $(OBJS)
  8. $(CC) -o globSample globSample.o
  9. $(CC) -o basicSample basicSample.o
  10. $(CC) -o fullSample fullSample.o
  11.  
  12. clean:
  13. rm -f core *.o fullSample basicSample globSample
  14.  
  15. globSample.o: SimpleOpt.h SimpleGlob.h
  16. fullSample.o: SimpleOpt.h SimpleGlob.h
  17. basicSample.o: SimpleOpt.h SimpleGlob.h