blob: 0bd33bf41d3622ae22bed26728685149f13af902 (
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
|
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
|