tmakefile - xmenu - drop-down menu for X11
(HTM) git clone git://git.z3bra.org/xmenu.git
(DIR) Log
(DIR) Files
(DIR) Refs
---
tmakefile (341B)
---
1 include config.mk
2
3 xmenu: xmenu.o font.o
4 xmenu.o: xmenu.c config.h
5 font.o: font.c font.h
6
7 config.h: config.def.h
8 cp config.def.h config.h
9
10 clean:
11 rm -f xmenu *.o
12
13 install: xmenu
14 mkdir -p $(DESTDIR)$(PREFIX)/bin
15 cp xmenu $(DESTDIR)$(PREFIX)/bin/xmenu
16 chmod 755 $(DESTDIR)$(PREFIX)/bin/xmenu
17
18 uninstall:
19 rm $(DESTDIR)$(PREFIX)/bin/xmenu