- removed MAKEDEV, functionality now included in Makefile ("make dev")

This commit is contained in:
cebix 1999-10-03 19:43:55 +00:00
parent 9a68908882
commit 952712c0df
2 changed files with 4 additions and 3 deletions

View File

@ -1,2 +0,0 @@
#! /bin/sh -
mknod /dev/sheep_net c 10 198

View File

@ -3,7 +3,7 @@
## System specific configuration
CC = cc
CPPFLAGS = -I. -I/usr/src/linux/include
CFLAGS = -O2 -Wall -D__KERNEL__ -DMODULE
CFLAGS = -O2 -Wall -fno-builtin -D__KERNEL__ -DMODULE
ASFLAGS =
LDFLAGS =
LIBS =
@ -15,6 +15,9 @@ OBJS = sheep_net.o
sheep_net.o: sheep_net.c
$(CC) -c $(CPPFLAGS) $(CFLAGS) sheep_net.c
dev:
mknod /dev/sheep_net c 10 198
clean:
-rm $(OBJS)