mirror of
https://github.com/0intro/wmii
synced 2024-11-22 13:52:17 +03:00
29 lines
463 B
Makefile
29 lines
463 B
Makefile
ROOT= ../..
|
|
include $(ROOT)/mk/hdr.mk
|
|
include $(ROOT)/mk/wmii.mk
|
|
|
|
main.c: $(ROOT)/mk/wmii.mk
|
|
|
|
bindings.c: keys.txt Makefile
|
|
( echo "char binding_spec[] ="; \
|
|
sed 's/.*/ "&\\n"/' keys.txt; \
|
|
echo " ;" ) >$@
|
|
|
|
TARG = wimenu
|
|
HFILES= dat.h fns.h
|
|
TAGFILES= dat.h $(ROOT)/include/*.h $(ROOT)/include/stuff/*.h
|
|
|
|
PACKAGES += $(X11PACKAGES)
|
|
|
|
LIB = $(LIBS9) $(LIBIXP)
|
|
LIBS += -lm
|
|
OBJ = main \
|
|
caret \
|
|
history \
|
|
menu \
|
|
keys \
|
|
bindings
|
|
|
|
include $(ROOT)/mk/one.mk
|
|
|