wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

Makefile (4000B)


      1 ROOT= ../..
      2 include $(ROOT)/mk/hdr.mk
      3 
      4 TARG=libstuff
      5 
      6 PACKAGES += $(X11PACKAGES) xext xrandr xrender xinerama
      7 
      8 OBJ=\
      9     	buffer		\
     10 	clientutil	\
     11 	client_readconfig	\
     12 	event/buttonpress	\
     13 	event/buttonrelease	\
     14 	event/clientmessage	\
     15 	event/configurenotify	\
     16 	event/configurerequest	\
     17 	event/destroynotify	\
     18 	event/enternotify	\
     19 	event/event		\
     20 	event/expose		\
     21 	event/focusin		\
     22 	event/focusout		\
     23 	event/ixp		\
     24 	event/keypress		\
     25 	event/keyrelease	\
     26 	event/leavenotify	\
     27 	event/mapnotify		\
     28 	event/maprequest	\
     29 	event/mappingnotify	\
     30 	event/motionnotify	\
     31 	event/propertynotify	\
     32 	event/reparentnotify	\
     33 	event/selection		\
     34 	event/selectionclear	\
     35 	event/selectionrequest	\
     36 	event/unmapnotify	\
     37 	event/xtime		\
     38 	fmt/blprint		\
     39 	fmt/bvlprint		\
     40 	fmt/fmtbuf		\
     41 	fmt/localefmt		\
     42 	fmt/localelen		\
     43 	fmt/lprint		\
     44 	fmt/vlprint		\
     45 	geom/get_sticky		\
     46 	geom/quadrant		\
     47 	geom/rect_contains_p	\
     48 	geom/rect_haspoint_p	\
     49 	geom/rect_intersect_p	\
     50 	geom/rect_intersection	\
     51 	init_screens	\
     52 	map		\
     53 	printevent	\
     54 	util/_die	\
     55 	util/closeexec	\
     56 	util/comm	\
     57 	util/doublefork	\
     58 	util/emalloc	\
     59 	util/emallocz	\
     60 	util/erealloc	\
     61 	util/estrdup	\
     62 	util/estrndup	\
     63 	util/fatal	\
     64 	util/freelater	\
     65 	util/getbase	\
     66 	util/getint	\
     67 	util/getlong	\
     68 	util/getulong	\
     69 	util/grep	\
     70 	util/join	\
     71 	util/max	\
     72 	util/mfatal	\
     73 	util/min	\
     74 	util/nsec	\
     75 	util/pathsearch	\
     76 	util/refree	\
     77 	util/reinit	\
     78 	util/spawn3	\
     79 	util/spawn3l	\
     80 	util/stokenize	\
     81 	util/strcasestr	\
     82 	util/strend	\
     83 	util/strlcat	\
     84 	util/strlcatprint	\
     85 	util/sxprint	\
     86 	util/tokenize	\
     87 	util/trim	\
     88 	util/uniq	\
     89 	util/unmask	\
     90 	util/unquote	\
     91 	util/utflcpy	\
     92 	util/vector	\
     93 	util/vsxprint	\
     94 	x11/convpts	\
     95 	x11/errors	\
     96 	x11/ignored_xerrors	\
     97 	x11/freestringlist	\
     98 	x11/initdisplay	\
     99 	x11/selection	\
    100 	x11/sendevent	\
    101 	x11/sendmessage	\
    102 	x11/sync	\
    103 	x11/x11		\
    104 	x11/xatom	\
    105 	x11/xft		\
    106 	x11/colors/loadcolor	\
    107 	x11/colors/parsecolor	\
    108 	x11/colors/xftcolor	\
    109 	x11/drawing/border	\
    110 	x11/drawing/drawline	\
    111 	x11/drawing/drawpoly	\
    112 	x11/drawing/drawstring	\
    113 	x11/drawing/fill	\
    114 	x11/drawing/fillpoly	\
    115 	x11/drawing/setgccol	\
    116 	x11/focus/getfocus	\
    117 	x11/focus/setfocus	\
    118 	x11/geometry/XRect	\
    119 	x11/geometry/addpt	\
    120 	x11/geometry/divpt	\
    121 	x11/geometry/eqpt	\
    122 	x11/geometry/eqrect	\
    123 	x11/geometry/insetrect	\
    124 	x11/geometry/mulpt	\
    125 	x11/geometry/rectaddpt	\
    126 	x11/geometry/rectsetorigin	\
    127 	x11/geometry/rectsubpt	\
    128 	x11/geometry/subpt	\
    129 	x11/images/allocimage	\
    130 	x11/images/copyimage	\
    131 	x11/images/freeimage	\
    132 	x11/images/xftdrawable	\
    133 	x11/insanity/gravitate	\
    134 	x11/insanity/gethints	\
    135 	x11/insanity/sethints	\
    136 	x11/insanity/sizehint	\
    137 	x11/keyboard/grabkeyboard	\
    138 	x11/keyboard/ungrabkeyboard	\
    139 	x11/keys/keycode	\
    140 	x11/keys/parsekey	\
    141 	x11/mouse/grabpointer	\
    142 	x11/mouse/pointerscreen	\
    143 	x11/mouse/querypointer	\
    144 	x11/mouse/translate	\
    145 	x11/mouse/ungrabpointer	\
    146 	x11/mouse/warppointer	\
    147 	x11/properties/changeprop_char	\
    148 	x11/properties/changeprop_long	\
    149 	x11/properties/changeprop_short	\
    150 	x11/properties/changeprop_string	\
    151 	x11/properties/changeprop_textlist	\
    152 	x11/properties/changeprop_ulong	\
    153 	x11/properties/changeproperty	\
    154 	x11/properties/delproperty	\
    155 	x11/properties/getprop	\
    156 	x11/properties/getprop_long	\
    157 	x11/properties/getprop_string	\
    158 	x11/properties/getprop_textlist	\
    159 	x11/properties/getproperty	\
    160 	x11/properties/strlistdup	\
    161 	x11/properties/windowname	\
    162 	x11/shape/setshapemask	\
    163 	x11/text/freefont	\
    164 	x11/text/labelh	\
    165 	x11/text/loadfont	\
    166 	x11/text/textextents_l	\
    167 	x11/text/textwidth	\
    168 	x11/text/textwidth_l	\
    169 	x11/windows/configwin	\
    170 	x11/windows/createwindow	\
    171 	x11/windows/createwindow_rgba	\
    172 	x11/windows/createwindow_visual	\
    173 	x11/windows/destroywindow	\
    174 	x11/windows/findwin	\
    175 	x11/windows/getwinrect	\
    176 	x11/windows/lowerwin	\
    177 	x11/windows/mapwin	\
    178 	x11/windows/movewin	\
    179 	x11/windows/raisewin	\
    180 	x11/windows/reparentwindow	\
    181 	x11/windows/reshapewin	\
    182 	x11/windows/selectinput	\
    183 	x11/windows/setborder	\
    184 	x11/windows/sethandler	\
    185 	x11/windows/setwinattr	\
    186 	x11/windows/unmapwin	\
    187 	x11/windows/window	\
    188 	xext
    189 
    190 include $(ROOT)/mk/lib.mk
    191