⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 操作系统SunOS 4.1.3版本的源码
💻
字号:
## @(#)Makefile 1.1 92/07/30 SMI#SRCS = boggle.c lists.c sand.c search.cOBJS = boggle.o lists.o sand.o search.oLIBS = -lsuntool -lsunwindow -lpixrectCFLAGS = -Oall: boggletool boggledictboggletool: $(OBJS)	$(CC) -o boggletool $(CFLAGS) $(OBJS) $(LIBS)boggle.o: boggle.c	mv boggle.c boggle.c-	sed -e "s/boggletool_main/main/" boggle.c- > boggle.c	$(CC) $(CFLAGS) -c boggle.c	mv boggle.c- boggle.cboggle.o: defs.h images.hlists.o: defs.hsand.o: defs.h outline.h sandframes.hsearch.o: defs.hboggledict: bogglewords spellin comp	cat bogglewords | spellin > boggledict	cat bogglewords | comp >> boggledictspellin: spellin.o	$(CC) -o $@ spellin.o spellin.o: spell.h spellin.ccomp: comp.o	$(CC) -o comp comp.ocomp.o: comp.clint:	lint -hb $(SRCS) $(LIBS)install: all	install -s boggletool $(DESTDIR)/usr/games/boggletool	install boggledict $(DESTDIR)/usr/games/boggledictclean:	rm -f $(OBJS) boggletool boggledict

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -