Дилян Палаузов пре 2 година
родитељ
комит
d61cd534f8
4 измењених фајлова са 12 додато и 12 уклоњено
  1. 1 1
      src/Makefile
  2. 7 7
      src/Makefile.defs
  3. 1 1
      src/Makefile.groups
  4. 3 3
      src/Makefile.targets

+ 1 - 1
src/Makefile

@@ -32,7 +32,7 @@ include Makefile.targets
 err_fail?=1
 
 # whether or not to install $(MAIN_NAME).cfg or just $(MAIN_NAME).cfg.default
-# ($(MAIN_NAME).cfg will never be overwritten by make install, this is usefull
+# ($(MAIN_NAME).cfg will never be overwritten by make install, this is useful
 #  when creating packages)
 skip_cfg_install?=
 

+ 7 - 7
src/Makefile.defs

@@ -589,13 +589,13 @@ data_target = $(prefix)/$(data_dir)
 #		uses a faster malloc
 # -DDBG_QM_MALLOC
 #		qm_malloc debug code, will cause pkg_malloc and shm_malloc
-#		to keep and display lot of debuging information: file name,
+#		to keep and display lot of debugging information: file name,
 #		function, line number of malloc/free call for each block,
 #		extra error checking (trying to free the same pointer
 #		twice, trying to free a pointer alloc'ed with a different
 #		malloc etc.)
 # -DVQ_MALLOC
-#		additional option to PKG_MALLOC which utilizes a fater then
+#		additional option to PKG_MALLOC which utilizes a faster than
 #		qm version
 #		(not true anymore, q_malloc performs approx. the same)
 # -DQ_MALLOC
@@ -619,7 +619,7 @@ data_target = $(prefix)/$(data_dir)
 # -DMEM_JOIN_FREE
 #		enable the join of free memory chunks (see also mem_join cfg param)
 # -DFAST_LOCK
-#		uses fast arhitecture specific locking (see the arh. specific section)
+#		uses fast architecture specific locking (see the arch. specific section)
 # -DUSE_SYSV_SEM
 #		uses sys v sems for locking (slower & limited number)
 # -DUSE_PTHREAD_MUTEX
@@ -1004,9 +1004,9 @@ ifeq		($(CC_NAME), icc)
 			CFLAGS+=-O3  -ipo -ipo_obj -unroll  $(PROFILE) \
 					 -tpp6 -xK  #-openmp  #optimize for PIII
 				# -prefetch doesn't seem to work
-				#( ty to inline acroos files, unroll loops,prefetch,
+				#( try to inline across files, unroll loops, prefetch,
 				# optimize for PIII, use PIII instructions & vect.,
-				# mutlithread loops)
+				# multithread loops)
 else
 				#other compilers
 $(error 			Unsupported compiler ($(CC):$(CC_NAME)), try gcc)
@@ -1087,9 +1087,9 @@ ifeq		($(CC_NAME), icc)
 			CFLAGS+=-O3  -ipo -ipo_obj -unroll  $(PROFILE) \
 					 -tpp6 -xK  #-openmp  #optimize for PIII
 				# -prefetch doesn't seem to work
-				#( ty to inline acroos files, unroll loops,prefetch,
+				#( try to inline across files, unroll loops, prefetch,
 				# optimize for PIII, use PIII instructions & vect.,
-				# mutlithread loops)
+				# multithread loops)
 else
 				#other compilers
 $(error 			Unsupported compiler ($(CC):$(CC_NAME)), try gcc)

+ 1 - 1
src/Makefile.groups

@@ -214,7 +214,7 @@ mod_list_erlang=erlang
 # - modules depending on systemd library
 mod_list_systemd=log_systemd systemdops
 
-# - modules depending on libnsq (+libev libevbuffsock liblcurl libjson-c) library
+# - modules depending on libnsq (+libev libevbuffsock libcurl libjson-c) library
 mod_list_nsq=nsq
 
 # - modules depending on librabbitmq library

+ 3 - 3
src/Makefile.targets

@@ -16,7 +16,7 @@ clean_targets:=	clean proper distclean-old realclean maintainer-clean local-clea
 				clean-modules proper-modules realclean-modules \
 				distclean-modules maintainer-clean-modules \
 				clean-utils proper-utils realclean-utils distclean-utils \
-				maintaner-clean-utils \
+				maintainer-clean-utils \
 				clean-libs proper-libs realclean-libs distclean-libs \
 				maintainer-clean-libs \
 				clean-tmp clean_doxygen clean-extra-names \
@@ -26,7 +26,7 @@ doc_targets:=	README man install-doc install-man install-ser-man \
 		$(foreach m,$(modules_dirs),$(m)-doc $(m)-readme $(m)-man) \
 		$(foreach m,$(modules_dirs),install-$(m)-doc install-$(m)-man)
 
-# auxiliary: maintance, debugging, etc. (don't affect code/objects)
+# auxiliary: maintenance, debugging, etc. (don't affect code/objects)
 aux_targets:=	TAGS tar dist cfg-defs cfg config config.mak print-modules \
 		dbg dbinstall librpath.lst makecfg.lst modules.lst modules-cfg \
 		modules-list modules-lst mk-install_dirs autover.h deb
@@ -36,6 +36,6 @@ ext_targets:=	every-module modules-all $(modules_dirs) libs utils \
 		$(foreach m,$(modules_dirs),install-$(m)) \
 		install-share
 
-# all the targets that don't require code dependecies in the current dir.
+# all the targets that don't require code dependencies in the current dir.
 nodep_targets:=	$(clean_targets) $(doc_targets) $(aux_targets) $(ext_targets)