6bdd276d05
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
20 lines
431 B
Makefile
20 lines
431 B
Makefile
thisdir = ilasm
|
|
SUBDIRS =
|
|
include ../build/rules.make
|
|
|
|
PROGRAM = ilasm.exe
|
|
BUILT_SOURCES = ILParser.cs
|
|
LIB_REFS = PEAPI Mono.CompilerServices.SymbolWriter Mono.Security
|
|
|
|
CLEAN_FILES = parser/y.output
|
|
|
|
EXTRA_DISTFILES = \
|
|
parser/ILParser.jay \
|
|
$(wildcard tests/*.il)
|
|
|
|
ILParser.cs: parser/ILParser.jay $(topdir)/jay/skeleton.cs
|
|
$(topdir)/jay/jay -ct < $(topdir)/jay/skeleton.cs $(CURDIR)/$< >$@
|
|
|
|
include ../build/executable.make
|
|
|