mirror of
https://github.com/0intro/wmii
synced 2024-11-22 05:42:05 +03:00
24 lines
297 B
Makefile
24 lines
297 B
Makefile
ROOT= ../..
|
|
include $(ROOT)/mk/hdr.mk
|
|
include $(ROOT)/mk/wmii.mk
|
|
|
|
main.c: $(ROOT)/mk/wmii.mk
|
|
|
|
TARG = witray
|
|
HFILES= dat.h fns.h selection.h
|
|
|
|
PACKAGES += $(X11PACKAGES)
|
|
|
|
LIB = $(LIBS9) $(LIBIXP)
|
|
LIBS += -lm
|
|
OBJ = \
|
|
client \
|
|
ewmh \
|
|
main \
|
|
selection \
|
|
tray \
|
|
xembed
|
|
|
|
include $(ROOT)/mk/one.mk
|
|
|