Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Link with all the needed libs. Adjust dist dir name. |
---|---|
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: | 54c378c9ed26982ede77857179cf58e5f94cf836 |
User & Date: | stu 2014-10-24 00:23:06 |
Context
2014-10-24
| ||
00:23 | Link with all the needed libs. Adjust dist dir name. Leaf check-in: 54c378c9ed user: stu tags: trunk | |
2014-10-22
| ||
06:24 | Improve examples. check-in: f841a312f7 user: stu tags: trunk | |
Changes
Changes to Makefile.in.
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 ... 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 ... 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
DEFS = @DEFS@ $(PKG_CFLAGS) # Move pkgIndex.tcl to 'BINARIES' var if it is generated in the Makefile CONFIG_CLEAN_FILES = Makefile pkgIndex.tcl CLEANFILES = @CLEANFILES@ CPPFLAGS = @CPPFLAGS@ LIBS = @PKG_LIBS@ @LIBS@ AR = @AR@ CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) .SUFFIXES: .c .$(OBJEXT) #======================================================================== ................................................................................ libraries: #======================================================================== # txerecord #======================================================================== txerecord: TkXext.record.c $(COMPILE) $(SHLIB_LD_LIBS) -lXext -lXtst `echo $(srcdir)/unix/TkXext.record.c` -o $@ #======================================================================== # Your doc target should differentiate from doc builds (by the developer) # and doc installs (see install-doc), which just install the docs on the # end user machine when building from source. #======================================================================== ................................................................................ #======================================================================== # Distribution creation # You may need to tweak this target to make it work correctly. #======================================================================== DIST_PKG_DIR = $(PACKAGE_NAME)-$(PACKAGE_VERSION) COMPRESS = tar zcvf $(DIST_PKG_DIR).tar.gz $(DIST_PKG_DIR) DIST_ROOT = /tmp/tkxextdist DIST_DIR = $(DIST_ROOT)/$(DIST_PKG_DIR) DIST_INSTALL_DATA = ${INSTALL} -m 644 DIST_INSTALL_SCRIPT = ${INSTALL} -m 755 dist-clean: rm -rf $(DIST_DIR) $(DIST_ROOT)/$(DIST_PKG_DIR).tar.* |
| | | |
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 ... 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 ... 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
DEFS = @DEFS@ $(PKG_CFLAGS) # Move pkgIndex.tcl to 'BINARIES' var if it is generated in the Makefile CONFIG_CLEAN_FILES = Makefile pkgIndex.tcl CLEANFILES = @CLEANFILES@ CPPFLAGS = @CPPFLAGS@ LIBS = @PKG_LIBS@ @LIBS@ -lXext -lXtst AR = @AR@ CFLAGS = @CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) .SUFFIXES: .c .$(OBJEXT) #======================================================================== ................................................................................ libraries: #======================================================================== # txerecord #======================================================================== txerecord: TkXext.record.c $(COMPILE) $(LIBS) `echo $(srcdir)/unix/TkXext.record.c` -o $@ #======================================================================== # Your doc target should differentiate from doc builds (by the developer) # and doc installs (see install-doc), which just install the docs on the # end user machine when building from source. #======================================================================== ................................................................................ #======================================================================== # Distribution creation # You may need to tweak this target to make it work correctly. #======================================================================== DIST_PKG_DIR = $(PACKAGE_NAME)-$(PACKAGE_VERSION) COMPRESS = tar zcvf $(DIST_PKG_DIR).tar.gz $(DIST_PKG_DIR) DIST_ROOT = /tmp/dist_$(PACKAGE_NAME) DIST_DIR = $(DIST_ROOT)/$(DIST_PKG_DIR) DIST_INSTALL_DATA = ${INSTALL} -m 644 DIST_INSTALL_SCRIPT = ${INSTALL} -m 755 dist-clean: rm -rf $(DIST_DIR) $(DIST_ROOT)/$(DIST_PKG_DIR).tar.* |