Makefile (6cec9cad762b6476313fb1f8e931a1647822db6b) | Makefile (ca7f4027f7bed0d40e6b98b16a4acd3045964ba1) |
---|---|
1# 05 Jun 93 2# 3# Makefile for testmisc 4# 5# 05 Jun 93 Rajesh Vaidheeswarran Original 6# 7# Copyright (c) 1993 Rajesh Vaidheeswarran. 8# All rights reserved. --- 59 unchanged lines hidden (view full) --- 68# 69PROG= testcdev 70MAN= 71WARNS?= 5 72 73MODSTAT= /sbin/kldstat 74 75load: | 1# 05 Jun 93 2# 3# Makefile for testmisc 4# 5# 05 Jun 93 Rajesh Vaidheeswarran Original 6# 7# Copyright (c) 1993 Rajesh Vaidheeswarran. 8# All rights reserved. --- 59 unchanged lines hidden (view full) --- 68# 69PROG= testcdev 70MAN= 71WARNS?= 5 72 73MODSTAT= /sbin/kldstat 74 75load: |
76 @echo "This test program will call the sample kld characer device "; | 76 @echo "This test program will call the sample kld character device "; |
77 @echo "driver." 78 @echo 79 @echo "The sample driver will display a message on the" 80 @echo "system console each time an ioctl is sent to it." 81 @echo 82 @echo 83 @echo 84 @./testcdev 85 86unload: 87 @echo "This test program will cause an error if the driver" 88 @echo "has been successfully unloaded by building 'unload' in" 89 @echo "the 'module' subdirectory." 90 @echo 91 ${MODSTAT} -n cdev 92 93install: 94 95.include <bsd.prog.mk> | 77 @echo "driver." 78 @echo 79 @echo "The sample driver will display a message on the" 80 @echo "system console each time an ioctl is sent to it." 81 @echo 82 @echo 83 @echo 84 @./testcdev 85 86unload: 87 @echo "This test program will cause an error if the driver" 88 @echo "has been successfully unloaded by building 'unload' in" 89 @echo "the 'module' subdirectory." 90 @echo 91 ${MODSTAT} -n cdev 92 93install: 94 95.include <bsd.prog.mk> |