From ea1947ffcc606d757357398b24e74a3f4ecefa07 Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 20 Oct 2021 14:54:27 +0000 Subject: Initial commit from steward-fu release --- core/bgdc/src/Makefile.am | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 core/bgdc/src/Makefile.am (limited to 'core/bgdc/src/Makefile.am') diff --git a/core/bgdc/src/Makefile.am b/core/bgdc/src/Makefile.am new file mode 100644 index 0000000..f173b6f --- /dev/null +++ b/core/bgdc/src/Makefile.am @@ -0,0 +1,26 @@ +bin_PROGRAMS = bgdc + +.rc.o: + $(WINDRES) $< -I../../include -o $@ + +INCLUDES = $(COMMON_CFLAGS) $(ZLIB_CFLAGS) -I../../include -I../include -D__BGDC__ ${EXTRA_STATIC_CFLAGS} + +bgdc_LDADD = $(COMMON_LDFLAGS) $(ZLIB_LIBS) $(CRYPT_LDFLAGS) + +bgdc_LDFLAGS = + +SOURCE_FILES = main.c main_core.c token.c identifier.c segment.c \ + constants.c strings.c varspace.c procedure.c codeblock.c \ + c_main.c c_data.c c_code.c c_debug.c dcbw.c \ + error.c \ + sysstub.c typedef.c \ + ../../common/debug.c \ + ../../common/b_crypt.c \ + ../../common/files.c \ + ../../common/xctype.c + +if HAVE_WINDRES +bgdc_SOURCES = $(SOURCE_FILES) bgdc.rc +else +bgdc_SOURCES = $(SOURCE_FILES) +endif -- cgit v1.2.3