# | Line 1 | Line 1 | |
---|---|---|
1 | < | # Linux makefile for SheepShaver |
1 | > | # Linux makefile for sheep_net driver |
2 | ||
3 | ## System specific configuration | |
4 | CC = cc | |
# | Line 15 | Line 15 | OBJS = sheep_net.o | |
15 | sheep_net.o: sheep_net.c | |
16 | $(CC) -c $(CPPFLAGS) $(CFLAGS) sheep_net.c | |
17 | ||
18 | + | dev: |
19 | + | mknod /dev/sheep_net c 10 198 |
20 | + | |
21 | + | install: sheep_net.o |
22 | + | install -d /lib/modules/`uname -r`/misc |
23 | + | install -m 644 sheep_net.o /lib/modules/`uname -r`/misc |
24 | + | |
25 | clean: | |
26 | -rm $(OBJS) | |
27 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |