📄 makefile.cross
字号:
######################################################################### (C) Copyright 1999, 2000# DENX Software Engineering# Wolfgang Denk, wd@denx.de# All rights reserved.### Demo Device Driver for TQM8xxL: play with the free LEDs on the STK8xx## Can be loaded as module## $Id: Makefile.cross,v 1.1 2000/01/14 16:28:49 wd Exp $########################################################################CFLAGS = -O2CC = powerpc-linux-gccMODULE_CFLAGS = -D__KERNEL__ -DMODULE -DMODVERSIONS \ -D__powerpc__ -mcpu=860 \ -Wall -Wstrict-prototypes -Wno-uninitialized \ -fomit-frame-pointer \ -fsigned-char -msoft-float -fno-builtin -ffixed-r2 \ -pipe -mmultiple -mstring \ -I../8xx_io \ -include /LinuxPPC/usr/src/linux-2.2.13/include/linux/modversions.hall: tqm_led.oins: all [ -c /dev/led ] || mknod /dev/led c 42 0 -rmmod tqm_led.o /sbin/insmod ./tqm_led.otqm_led.o: tqm_led.c $(CC) $(CFLAGS) $(MODULE_CFLAGS) -c -o $@ $^clean: rm -f tqm_led.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -