/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Development/autotools/makefile/math

  • Committer: Suren A. Chilingaryan
  • Date: 2017-04-03 02:45:17 UTC
  • Revision ID: csa@suren.me-20170403024517-dwzj0z0k1cmhxm7u
Restructuring, OpenShift, Ansible, Git

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
a=$(b)                  "a" is pointer on "b"
2
 
x=y;y=z;a=$($(x))       Using pointers, a is equal to 'z'
3
 
a:=$(b)                 "a" is equivalent to "b"
4
 
a:=a.o b.o
5
 
b:=$(a:.o=.c)           Changes all extensions from ".o" to ".c"
6
 
b:=$(a:%.o=%.c)         Some
7
 
$(patsubst %.o,%.c,$a)  Some
8
 
$(filter %.o $files)    Only thoose files which have ".o" extension
9
 
$(wildcard *.o)         All files in current directory with ".o" extension