diff options
author | Harald Koerfgen <hkoerfg@web.de> | 1999-05-01 12:23:43 +0000 |
---|---|---|
committer | Harald Koerfgen <hkoerfg@web.de> | 1999-05-01 12:23:43 +0000 |
commit | c19daa94ab746a6c9083c7ffb5cdffc3f41e339b (patch) | |
tree | 20af8aa7a8b2ec5f603b9058c5a53f3246e71764 /drivers/net/Makefile | |
parent | 94f05bab9bf52258637e467fd89ae4f168736f4a (diff) |
Various changes to Makefiles and Config.in files to be able to make use of the new DECstation and Baget stuff :-)
Diffstat (limited to 'drivers/net/Makefile')
-rw-r--r-- | drivers/net/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 572e4ec27..22fe2bae3 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -875,6 +875,22 @@ else endif endif +ifeq ($(CONFIG_BAGETLANCE),y) +L_OBJS += bagetlance.o +else + ifeq ($(CONFIG_BAGETLANCE),m) + M_OBJS += bagetlance.o + endif +endif + +ifeq ($(CONFIG_DECLANCE),y) +L_OBJS += declance.o +else + ifeq ($(CONFIG_DECLANCE),m) + M_OBJS += declance.o + endif +endif + ifeq ($(CONFIG_ATARILANCE),y) L_OBJS += atarilance.o else |