Revision: | 1.1 |
Committed: | 1999-10-03T14:16:25Z (25 years, 1 month ago) by cebix |
Branch: | MAIN |
Branch point for: | cebix |
Log Message: | Initial revision |
# | 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 | CFLAGS = -O2 -Wall -D__KERNEL__ -DMODULE | ||
7 | 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 | |||
18 | clean: | ||
19 | -rm $(OBJS) | ||
20 | |||
21 | dep depend: | ||
22 | makedepend $(CPPFLAGS) -Y *.c | ||
23 | |||
24 | # DO NOT DELETE |