diff options
author | Pat Gefre <pfg@sgi.com> | 2000-04-11 16:08:44 +0000 |
---|---|---|
committer | Pat Gefre <pfg@sgi.com> | 2000-04-11 16:08:44 +0000 |
commit | 435c9faaacd28deec6a7711786ec36b6cb363720 (patch) | |
tree | 8ae051dcfb0e1d28f9170031f1761539589327c0 /drivers/sgi/Makefile | |
parent | 7c671d2b4ec91fdf5fd62969e598223f5b4e59f8 (diff) |
Fixed typo (turns out #ifdef is a comment in a Makefile .....)
Diffstat (limited to 'drivers/sgi/Makefile')
-rw-r--r-- | drivers/sgi/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/sgi/Makefile b/drivers/sgi/Makefile index c597ae15e..37df697c1 100644 --- a/drivers/sgi/Makefile +++ b/drivers/sgi/Makefile @@ -9,13 +9,13 @@ SUB_DIRS := MOD_SUB_DIRS := $(SUB_DIRS) char -#ifdef CONFIG_SGI_IO +ifdef CONFIG_SGI_IO MOD_SUB_DIRS += io -#endif +endif ALL_SUB_DIRS := $(SUB_DIRS) char -#ifdef CONFIG_SGI_IO +ifdef CONFIG_SGI_IO ALL_SUB_DIRS += io -#endif +endif L_OBJS := @@ -25,12 +25,12 @@ MOD_LIST_NAME := SGI_MODULES # Character and Audio devices for SGI machines. # SUB_DIRS += char -#ifdef CONFIG_SGI_IO +ifdef CONFIG_SGI_IO SUB_DIRS += io -#endif +endif L_OBJS += char/sgichar.o -#ifdef CONFIG_SGI_IO +ifdef CONFIG_SGI_IO L_OBJS += io/sgiio.o -#endif +endif include $(TOPDIR)/Rules.make |