Overview
Comment: | Updated to support release build system |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
43aebb6a2bc4899cedef77e1f53a2fec |
User & Date: | rkeene on 2011-09-09 14:20:33.000 |
Other Links: | manifest | tags |
Context
2011-09-09
| ||
14:32 | Updated to correctly build release output Removed extraneous file check-in: 9608a4d5cf user: rkeene tags: trunk | |
14:20 | Updated to support release build system check-in: 43aebb6a2b user: rkeene tags: trunk | |
14:09 | Fixed missed clean-up file check-in: 8babc9b7bd user: rkeene tags: trunk | |
Changes
Added HEADER version [9cc3c39871].
Modified Makefile.in
from [ec5c84111c]
to [21133ef852].
1 2 3 4 5 6 7 8 9 10 11 | # # This file is a Makefile for CTk. If it has the name "Makefile.in" # then it is a template for a Makefile; to generate the actual Makefile, # run "./configure", which is a configuration script generated by the # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # # @(#) $Id: ctk.shar,v 1.50 1996/01/15 14:47:16 andrewm Exp andrewm $ # Current CTk version; used in various names. | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # # This file is a Makefile for CTk. If it has the name "Makefile.in" # then it is a template for a Makefile; to generate the actual Makefile, # run "./configure", which is a configuration script generated by the # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # # @(#) $Id: ctk.shar,v 1.50 1996/01/15 14:47:16 andrewm Exp andrewm $ # Current CTk version; used in various names. VERSION = @PACKAGE_VERSION@ #---------------------------------------------------------------- # Things you can change to personalize the Makefile for your own # site (you can make these changes in either Makefile.in or # Makefile, but changes to Makefile will get lost if you re-run # the configuration script). #---------------------------------------------------------------- |
︙ | ︙ | |||
179 180 181 182 183 184 185 | ar cr libctk.a $(OBJS) $(RANLIB) libctk.a libctk.@SHOBJEXT@: $(OBJS) rm -f libctk.@SHOBJEXT@ $(CC) $(CFLAGS) $(LDFLAGS) $(SHOBJLDFLAGS) -o libctk.@SHOBJEXT@ $(OBJS) $(LIBS) | < < < < < < < | > | | < > | 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | ar cr libctk.a $(OBJS) $(RANLIB) libctk.a libctk.@SHOBJEXT@: $(OBJS) rm -f libctk.@SHOBJEXT@ $(CC) $(CFLAGS) $(LDFLAGS) $(SHOBJLDFLAGS) -o libctk.@SHOBJEXT@ $(OBJS) $(LIBS) install: install-binaries install-libraries install-demos install-man install-binaries: @TARGETS@ @for i in $(LIB_INSTALL_DIR) $(BIN_INSTALL_DIR) ; \ do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ mkdir $$i; \ chmod 755 $$i; \ else true; \ fi; \ done; @for target in @TARGETS@; do echo "Installing $${target}"; \ $(INSTALL_DATA) $${target} $(LIB_INSTALL_DIR); \ done install-libraries: @for i in $(INSTALL_ROOT)$(prefix)/lib $(INCLUDE_INSTALL_DIR) \ $(SCRIPT_INSTALL_DIR) ; \ do \ if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ |
︙ | ︙ | |||
265 266 267 268 269 270 271 | $(INSTALL_DATA) $$i $(MAN1_INSTALL_DIR); \ done; Makefile: $(SRC_DIR)/Makefile.in $(SHELL) config.status clean: | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | $(INSTALL_DATA) $$i $(MAN1_INSTALL_DIR); \ done; Makefile: $(SRC_DIR)/Makefile.in $(SHELL) config.status clean: rm -f libctk.a libctk.@SHOBJEXT@ rm -f *.a *.o core errs *~ \#* TAGS *.E a.out errors tktest cwish$(VERSION) \ config.info distclean: clean rm -f Makefile config.status config.log pkgIndex.tcl depend: makedepend -- $(CC_SWITCHES) -- $(SRCS) .c.o: $(CC) -c $(CC_SWITCHES) $< # DO NOT DELETE THIS LINE -- make depend depends on it. |
Name change
from autogen.sh
to build/autogen.sh.
Added build/makearch.info version [28eea2a5f7].
Modified configure.ac
from [8a5b6b9c19]
to [74356e87a7].
1 | dnl Define ourselves | | | 1 2 3 4 5 6 7 8 9 | dnl Define ourselves AC_INIT(ctk, @@VERS@@) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_GNU_SOURCE |
︙ | ︙ |