003 File Manager
Current Path:
/usr/src/sys/dev/aic7xxx/aicasm
usr
/
src
/
sys
/
dev
/
aic7xxx
/
aicasm
/
📁
..
📄
Makefile
(878 B)
📄
aicasm.c
(19.95 KB)
📄
aicasm.h
(3.13 KB)
📄
aicasm_gram.y
(40.07 KB)
📄
aicasm_insformat.h
(3.58 KB)
📄
aicasm_macro_gram.y
(3.99 KB)
📄
aicasm_macro_scan.l
(4.12 KB)
📄
aicasm_scan.l
(14.92 KB)
📄
aicasm_symbol.c
(15.36 KB)
📄
aicasm_symbol.h
(4.73 KB)
Editing: Makefile
# # $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/aicasm/Makefile#2 $ # # $FreeBSD$ PROG= aicasm CSRCS= aicasm.c aicasm_symbol.c YSRCS= aicasm_gram.y aicasm_macro_gram.y LSRCS= aicasm_scan.l aicasm_macro_scan.l GENHDRS= aicasm_gram.h aicasm_macro_gram.h SRCS= ${GENHDRS} ${CSRCS} ${YSRCS} ${LSRCS} CLEANFILES+= ${GENHDRS} ${YSRCS:R:C/(.*)/\1.output/g} WARNS?= 0 # Correct path for kernel builds # Don't rely on the kernel's .depend file .ifdef MAKESRCPATH .PATH: ${MAKESRCPATH} DEPENDFILE= .depend_aicasm .endif CFLAGS+= -I${.CURDIR} .ifdef MAKESRCPATH CFLAGS+= -I${MAKESRCPATH} .endif MAN= YFLAGS= -b ${.TARGET:R} ${.TARGET:M*macro*:S/$(.TARGET)/-p mm/} -d LFLAGS+= ${.TARGET:M*macro*:S/$(.TARGET)/-Pmm/} .ifdef AICASM_DEBUG CFLAGS+= -DDEBUG -g YFLAGS+= -t -v LFLAGS+= -d .endif BINDIR=/usr/bin build-tools: ${PROG} .include <bsd.prog.mk> CFLAGS+= -Wno-missing-prototypes
Upload File
Create Folder