Update of /cvsroot/htoolkit/port
In directory sc8-pr-cvs1:/tmp/cvs-serv12165
Modified Files:
makefile
Log Message:
bugfix
Index: makefile
===================================================================
RCS file: /cvsroot/htoolkit/port/makefile,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** makefile 15 Aug 2003 16:44:27 -0000 1.28
--- makefile 15 Aug 2003 18:44:11 -0000 1.29
***************
*** 115,119 ****
HOBJS = $(patsubst %.hs,$(HOUTDIR)/%.o, $(HSRCS))
HDEPS = $(patsubst %.hs,$(HOUTDIR)/%.d, $(HSRCS))
- HHIS = $(patsubst %.hs,$(HOUTDIR)/%.hi, $(HSRCS))
COBJS = $(patsubst %.c,$(COUTDIR)/%.c.o, $(CSRCS))
--- 115,118 ----
***************
*** 141,145 ****
install -d $(LIBDIR)/doc/html/port
install -m 644 src/include/HsPort.h $(LIBDIR)/include/port
! install -m 644 $(HHIS) $(LIBDIR)/imports/Graphics/UI
install -m 644 $(MAINLIB) $(LIBDIR)
install -m 644 src/include/HsPort.h $(LIBDIR)/include
--- 140,145 ----
install -d $(LIBDIR)/doc/html/port
install -m 644 src/include/HsPort.h $(LIBDIR)/include/port
! install -m 644 $(HOUTDIR)/*.hi $(LIBDIR)/imports/Graphics/UI
! install -m 644 $(HOUTDIR)/Port/*.hi $(LIBDIR)/imports/Graphics/UI/Port
install -m 644 $(MAINLIB) $(LIBDIR)
install -m 644 src/include/HsPort.h $(LIBDIR)/include
|