blob: 95786c3716cbe0dc12a76dfe63bf25830a8454d0 (
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
26
27
28
29
30
31
|
ifeq ($(SRCDIR)x,x)
SRCDIR = $(CURDIR)/..
BUILDDIR = $(SRCDIR)
endif
SUBDIR = buildtools
VPATH = .:$(SRCDIR)/$(SUBDIR)
include $(BUILDDIR)/config.mk
.PHONY: default
default: netpbm.o
# We must not attempt to build netpbm.o if the build system does not
# have 'windres', so our all list is empty.
.PHONY: all
all:
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
|