diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-12-14 20:42:18 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-12-14 20:42:18 +0000 |
commit | 05917a2d030d8359b2a30f471e7100bc020d5a3f (patch) | |
tree | 5e705a3c57c3c1ef6d2d84a5484da824827ac7d4 /src | |
parent | da7b74edb223745fc38dce3d3107a00784714f03 (diff) |
Bug #4890" Include the assembly in the build (Ferris McCormick)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 08f84e8..7a908f3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,6 +28,10 @@ sunffb_drv_la_LTLIBRARIES = sunffb_drv.la sunffb_drv_la_LDFLAGS = -module -avoid-version sunffb_drv_ladir = @moduledir@/drivers +if SPARC +SPARC_ASM_SRC = ffb_asm.s VISmoveImage.s +endif + sunffb_drv_la_SOURCES = \ ffb_accel.c \ ffb_attr.c \ @@ -62,7 +66,8 @@ sunffb_drv_la_SOURCES = \ ffb_stip.h \ ffb_stubs.c \ ffb_wid.c \ - ffb_zeroarc.c + ffb_zeroarc.c \ + $(SPARC_ASM_SRC) if DRI sunffb_drv_la_SOURCES += \ @@ -70,13 +75,8 @@ sunffb_drv_la_SOURCES += \ ffb_drishare.h endif -# The two assembly language files here could conceivably be -# resurrected by someone sufficiently motivated. - EXTRA_DIST = \ ffb_clip.c \ ffb_clip.h \ ffb_wline.c \ - ffb_rect.c \ - ffb_asm.s \ - VISmoveImage.s + ffb_rect.c |