📄 makefile
字号:
## Makefile for Internetwork Topology Models## $Id: Makefile,v 1.1 1996/10/04 14:01:24 ewz Exp $# Note: If you are using Solaris, you MUST edit the Makefile to # uncomment the two Solaris lines below, and comment the SunOS line.# # For Solaris: uncomment the next two lines#SYS = -DSYSV#LIBS = -lm -lgb5# For SunOS: uncomment the next lineLIBS = -lm -lgb4 IDIR = ../includeLDIR = ../libBDIR = ../binCFLAGS = -I$(IDIR) -L$(LDIR) $(SYS)CC = gcc GO = itm.o geog.o ts.o dfs.oCO = sgb2alt.o EO = edriver.o eval.oGH = $(IDIR)/geog.h $(IDIR)/gb_graph.h $(IDIR)/gb_flip.hCH = $(IDIR)/geog.h $(IDIR)/gb_graph.h $(IDIR)/gb_save.hEH = $(IDIR)/gb_graph.h $(IDIR)/gb_save.h $(IDIR)/gb_dijk.h \ $(IDIR)/eval.hall: itm sgb2alt edriveritm: $(GO) $(CC) $(CFLAGS) -o $(BDIR)/itm $(GO) $(LIBS)itm.o: $(GH)geog.o: $(GH)ts.o: $(GH) dfs.o: $(GH)sgb2alt: $(CO) $(CC) $(CFLAGS) -o $(BDIR)/sgb2alt $(CO) $(LIBS) sgb2alt.o: $(CH)edriver: $(EO) $(CC) $(CFLAGS) -o $(BDIR)/edriver $(EO) $(LIBS)edriver.o: $(EH)eval.o: $(IDIR)/gb_graph.h $(IDIR)/gb_dijk.h $(IDIR)/eval.h clean: \rm -f *.overyclean: clean \rm -f $(BDIR)/*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -