Return to Snippet

Revision: 25274
at March 25, 2010 05:28 by mitry


Initial Code
.PHONY: icl
.SUFFIXES: .icl .ico .rc .res .

##-----------------------------
## ICL - ICon Library rules
##-----------------------------

icl: (notdir $(CURDIR)).icl
	
%.icl: %.res
	gcc -mwindows -s -shared -nostartfiles -o $@ $^

%.res: %.rc
	windres -O coff -o $@ -i $<

%.rc: $(wildcard *.ico)
	ls -1 $^ | sed -e 's/\(.\+\).ico/"\1" ICON "&"/' > $@

Initial URL


Initial Description
ICL - Windows ICon Library

Initial Title
Makefile for ICL

Initial Tags


Initial Language
Makefile