mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
183c7be52b
Be sure to edit ${FILESDIR}/revlist if you modify this port and sync with the kernel.
21 lines
473 B
Plaintext
21 lines
473 B
Plaintext
--- /dev/null Mon Jul 3 02:05:31 2000
|
|
+++ Makefile Mon Jul 3 02:15:22 2000
|
|
@@ -0,0 +1,17 @@
|
|
+.PATH: ${.CURDIR}
|
|
+KMOD= msdos_ja
|
|
+SRCS= vnode_if.h \
|
|
+ msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c \
|
|
+ msdosfs_vfsops.c msdosfs_vnops.c opt_msdosfs.h
|
|
+NOMAN=
|
|
+CLEANFILES+= opt_msdosfs.h
|
|
+
|
|
+opt_msdosfs.h:
|
|
+ touch opt_msdosfs.h
|
|
+ echo "#define MSDOSFS_LC_JAPAN 1" >> opt_msdosfs.h
|
|
+
|
|
+.if ${MACHINE} == "pc98"
|
|
+CFLAGS+= -DPC98
|
|
+.endif
|
|
+
|
|
+.include <bsd.kmod.mk>
|