blob: 2181c88b5bdcadf390d0e4dede773b7999808394 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = buildtools
VPATH = .:$(SRCDIR)/$(SUBDIR)
include $(BUILDDIR)/config.mk
all: netpbm.ico
include $(SRCDIR)/common.mk
%.ico:%.ppm
ppmtowinicon $< >$@
%.o:%.ico
echo "id ICON \"$<\"" >rc
$(WINDRES) --input-format rc --input rc --output-format coff \
--output $@
rm rc
distclean clean: cleanlocal
.PHONY: cleanlocal
cleanlocal:
rm -f rc
|