mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
13 lines
313 B
Makefile
13 lines
313 B
Makefile
CC=@CC_FOR_BUILD@
|
|
noinst_PROGRAMS = syngen
|
|
|
|
syngen_CPPFLAGS = -DSYNGEN
|
|
|
|
syngen_SOURCES = main.c token.c hash.c parse.c list.c reduce.c macro.c \
|
|
boolean.c error.c defopcode.c bitstring.c generatecode.c \
|
|
uniquestring.c byteorder.c
|
|
|
|
INCLUDES = -I$(srcdir)/include -I$(srcdir)/../include -I../include
|
|
|
|
EXEEXT =
|