Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

113 lines
3.1 KiB
Makefile

# makefile to compile MCPP version 2.7.1 and later for LCC-Win32 / LCC make
# 2008/11 kmatsui
# You must first edit BINDIR, INCDIR and LIBDIR according to your system.
# To compile MCPP do:
# make
# make install
# To re-compile MCPP using compiled MCPP, edit this makefile and do:
# make
# make install
# To link malloc() package of kmatsui, edit this makefile and do:
# make
# make install
# To make subroutine-build of MCPP, edit this makefile and do:
# make mcpplib
# make mcpplib_install
# To make testmain using libmcpp do:
# make testmain
# make testmain_install
NAME = mcpp.exe
CC = lcc
CFLAGS = -A
LINKFLAGS = -s -o $(NAME)
#BINDIR = \PUBLIC\COMPILERS\LCC\bin
# Adjust for your system
BINDIR = \PUBLIC\BIN
CPPOPTS= -DCOMPILER=LCC
# LCC-specific-build
# To link kmatsui's malloc()
#MEMLIB = kmmalloc_debug.lib
#MEM_MACRO = -DKMMALLOC -D_MEM_DEBUG -DXMALLOC
# else
MEMLIB =
MEM_MACRO =
OBJS = main.obj directive.obj eval.obj expand.obj support.obj system.obj \
mbchar.obj
$(NAME) : $(OBJS)
lcclnk $(LINKFLAGS) *.obj $(MEMLIB)
PREPROCESSED = 0
CMACRO = $(MEM_MACRO)
$(OBJS) : noconfig.H
main.obj directive.obj eval.obj expand.obj support.obj system.obj mbchar.obj: \
system.H internal.H
# To make MCPP using MCPP itself, comment out the above 5 lines and
# uncomment the next 5 lines.
#PREPROCESSED = 1
#CMACRO =
#mcpp.H : system.H noconfig.H internal.H
# $(BINDIR)\$(NAME) $(CPPOPTS) $(MEM_MACRO) preproc.c mcpp.H
#$(OBJS) : mcpp.H
CPPFLAGS = -DPREPROCESSED=$(PREPROCESSED)
.c.obj :
$(CC) $(CFLAGS) $(CPPFLAGS) $(CPPOPTS) $(CMACRO) $<
# To make MCPP using MCPP itself, comment out the above line and
# uncomment the next 2 lines.
# $(BINDIR)\$(NAME) $(CPPFLAGS) $< _$<
# $(CC) $(CFLAGS) $(CMACRO) _$<
install :
copy $(NAME) $(BINDIR)\$(NAME)
clean :
-del *.obj *.exe mcpp.H *.lib *.dll *.exp _*.c
LIBDIR = \PUBLIC\COMPILERS\LCC\lib
INCDIR = \PUBLIC\COMPILERS\LCC\include
# For subroutine-build, uncomment the following line.
#CFLAGS = -A -DMCPP_LIB=1 -DDLL_EXPORT $(MEM_MACRO)
DLL_VER = 0
mcpplib: mcpplib_lib mcpplib_dll
mcpplib_lib: $(OBJS)
# lcclib does not work if the output file already exists.
-del mcpp.lib
lcclib -out:mcpp.lib $(OBJS)
mcpplib_dll: $(OBJS)
lcclnk -dll -S $(OBJS) $(MEMLIB) mcpp_lib.def
mcpplib_install:
copy mcpp.lib $(LIBDIR)
copy mcpp$(DLL_VER).lib $(LIBDIR)
copy mcpp$(DLL_VER).dll $(BINDIR)
copy mcpp_lib.h $(INCDIR)
copy mcpp_out.h $(INCDIR)
$(CC) -c main_libmcpp.c
lcclnk -o $(NAME) main_libmcpp.obj mcpp$(DLL_VER).lib
copy $(NAME) $(BINDIR)
mcpplib_uninstall:
del $(LIBDIR)\mcpp.lib $(LIBDIR)\mcpp$(DLL_VER).lib \
$(BINDIR)\mcpp$(DLL_VER).dll
del $(BINDIR)\$(NAME)
del $(INCDIR)\mcpp*
# To use mcpp as a subroutine from testmain.c, uncomment the following lines.
# To output to memory buffer, uncomment the next line.
#CFLAGS = -A -DOUT2MEM -DDLL_IMPORT
#TMAIN_LINKFLAGS = -o testmain.exe testmain.obj mcpp$(DLL_VER).lib $(MEMLIB)
#testmain : testmain.obj
# lcclnk $(TMAIN_LINKFLAGS)
#testmain_install :
# copy testmain.exe $(BINDIR)
#testmain_uninstall :
# del $(BINDIR)\testmain.exe