forked from KolibriOS/kolibrios
21132138a1
git-svn-id: svn://kolibrios.org@5039 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
324 B
Makefile
12 lines
324 B
Makefile
# This is not a independent Makefile; it is auxiliary file
|
|
# included from main Makefile.
|
|
|
|
# The arguments of macro pestrip_meta_rule:
|
|
# $(1) = name of stripped file,
|
|
# $(2) = name of input file
|
|
define pestrip_meta_rule
|
|
$(1): $(2) Makefile.pestrip
|
|
EXENAME="$$<" fasm ../common/pestrip.asm "$$@"
|
|
kpack --nologo "$$@"
|
|
endef
|