19234507ba
Former-commit-id: 3494343bcc9ddb42b36b82dd9ae7b69e85e0229f
20 lines
433 B
Makefile
20 lines
433 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 -o $@ $(CURDIR)/$< < $(topdir)/jay/skeleton.cs
|
|
|
|
include ../build/executable.make
|
|
|