
- Currently, the driver detects only one adapter card. But the driver is already prepared to support several adapters. git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@296 315a16e6-25f9-4109-90ae-ca3045a26c18
21 lines
363 B
Makefile
21 lines
363 B
Makefile
C_source = rtl8139.c
|
|
|
|
OBJS += $(patsubst %.c, %.o, $(filter %.c, $(C_source)))
|
|
ALLOBJS += $(patsubst %.c, %.o, $(filter %.c, $(C_source)))
|
|
|
|
# other implicit rules
|
|
%.o : %.c
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
default: $(OBJS)
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
$(RM) *.o *~ $(NAME)
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(C_source) > Makefile.dep
|
|
|
|
-include Makefile.dep
|
|
# DO NOT DELETE
|