Makefile
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # Makefile for Internetwork Topology Models
  3. #
  4. # $Id: Makefile,v 1.1 1996/10/04 14:01:24 ewz Exp $
  5. # Note: If you are using Solaris, you MUST edit the Makefile to 
  6. #       uncomment the two Solaris lines below, and comment the SunOS line.
  7. LIBS = -lm -lgb
  8. GT_ITM = ..
  9. IDIR = $(GT_ITM)/include
  10. LDIR = $(GT_ITM)/lib
  11. BDIR = $(GT_ITM)/bin
  12. CFLAGS = -I$(IDIR) -L$(LDIR) $(SYS)
  13. CC = gcc 
  14. CN = sgb2ns.o
  15. HN = sgb2hierns.o
  16. COMN = sgb2comns.o
  17. CH = $(IDIR)/geog.h $(IDIR)/gb_graph.h $(IDIR)/gb_save.h
  18. all: sgb2comns sgb2hierns sgb2ns
  19. sgb2ns: $(CN)
  20. $(CC) $(CFLAGS) -o $(BDIR)/sgb2ns $(CN) $(LIBS) 
  21. sgb2hierns: $(HN)
  22. $(CC) $(CFLAGS) -o $(BDIR)/sgb2hierns $(HN) $(LIBS)
  23. sgb2comns: $(COMN)
  24. $(CC) $(CFLAGS) -o $(BDIR)/sgb2comns $(COMN) $(LIBS)
  25. sgb2ns.o: $(CH)
  26. sgb2hierns.o : $(CH)
  27. sgb2comns.o : $(CH)
  28. clean:  
  29. rm -f *.o
  30. veryclean:  clean
  31. rm -f $(BDIR)/*