Add disk_applet executable to the ignore list
[rmail.git] / Makefile
blob8008fd4a69d2b2407fcb7b4609b19b28d30674f1
1 TOPDIR=$(shell pwd)
3 TARGETS = md5 network applets utils
5 .SILENT:
7 .PHONY: $(TARGETS) clean
9 all: $(TARGETS)
11 md5:
12 $(MAKE) -C src/md5 all
14 network:
15 $(MAKE) -C src/network all
17 utils:
18 $(MAKE) -C src/utils PIXMAP_PATH=$(TOPDIR)/pixmaps/ all
20 applets:
21 $(MAKE) -C src/applets PIXMAP_PATH=$(TOPDIR)/pixmaps/ all
23 clean:
24 $(MAKE) -C src/utils clean
25 $(MAKE) -C src/md5 clean
26 $(MAKE) -C src/network clean
27 $(MAKE) -C src/applets clean