|
From: <kr_...@us...> - 2003-08-31 11:30:22
|
Update of /cvsroot/htoolkit/port In directory sc8-pr-cvs1:/tmp/cvs-serv18925 Modified Files: makefile Log Message: Prevent building of GSTLIB is the SmallTalk build is disabled Index: makefile =================================================================== RCS file: /cvsroot/htoolkit/port/makefile,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** makefile 31 Aug 2003 10:29:45 -0000 1.38 --- makefile 31 Aug 2003 11:30:18 -0000 1.39 *************** *** 138,142 **** all: release doc ! release: $(HSLIB) $(GSTLIB) install: $(HSLIB) $(PKG) --- 138,150 ---- all: release doc ! TARGETLIBS= ! ifeq "$(GHCDISABLED)" "NO" ! TARGETLIBS += $(HSLIB) ! endif ! ifeq "$(GSTDISABLED)" "NO" ! TARGETLIBS += $(GSTLIB) ! endif ! ! release: $(TARGETLIBS) install: $(HSLIB) $(PKG) |