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

📄 makefile

📁 Most satellite dish actuators send a series of pulses to indicate their position. By counting pulse
💻
字号:
prefix := $(shell rtai-config --prefix)ifeq ($(prefix),)$(error Please add <rtai-install>/bin to your PATH variable)endifCC = $(shell rtai-config --cc)LXRT_CFLAGS = $(shell rtai-config --lxrt-cflags)LXRT_LDFLAGS = $(shell rtai-config --lxrt-ldflags)all:: actact: act.c	$(CC) $(LXRT_CFLAGS) -o $@ $< $(LXRT_LDFLAGS) -llxrt                        clean::	$(RM) -f act *~	                                .PHONY: clean                                

⌨️ 快捷键说明

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