Revision: | 1.2 |
Committed: | 1999-10-03T19:43:55Z (25 years, 1 month ago) by cebix |
Branch: | MAIN |
CVS Tags: | release-0_7-2, snapshot-21101999, snapshot-13072000, snapshot-22121999, release-0_8-1, snapshot-02111999 |
Changes since 1.1: | +4 -1 lines |
Log Message: | - removed MAKEDEV, functionality now included in Makefile ("make dev") |
# | User | Rev | Content |
---|---|---|---|
1 | cebix | 1.1 | # Linux makefile for SheepShaver |
2 | |||
3 | ## System specific configuration | ||
4 | CC = cc | ||
5 | CPPFLAGS = -I. -I/usr/src/linux/include | ||
6 | cebix | 1.2 | CFLAGS = -O2 -Wall -fno-builtin -D__KERNEL__ -DMODULE |
7 | cebix | 1.1 | ASFLAGS = |
8 | LDFLAGS = | ||
9 | LIBS = | ||
10 | |||
11 | ## Files | ||
12 | OBJS = sheep_net.o | ||
13 | |||
14 | ## Rules | ||
15 | sheep_net.o: sheep_net.c | ||
16 | $(CC) -c $(CPPFLAGS) $(CFLAGS) sheep_net.c | ||
17 | cebix | 1.2 | |
18 | dev: | ||
19 | mknod /dev/sheep_net c 10 198 | ||
20 | cebix | 1.1 | |
21 | clean: | ||
22 | -rm $(OBJS) | ||
23 | |||
24 | dep depend: | ||
25 | makedepend $(CPPFLAGS) -Y *.c | ||
26 | |||
27 | # DO NOT DELETE |