# +----------------------------------------------------------------------+ # | Aubit 4gl Language Compiler Version $.0 | # +----------------------------------------------------------------------+ # | Copyright (c) 2000-1 Aubit Development Team (See Credits file) | # +----------------------------------------------------------------------+ # | This program is free software; you can redistribute it and/or modify | # | it under the terms of one of the following licenses: | # | | # | A) the GNU General Public License as published by the Free Software | # | Foundation; either version 2 of the License, or (at your option) | # | any later version. | # | | # | B) the Aubit License as published by the Aubit Development Team and | # | included in the distribution in the file: LICENSE | # | | # | This program is distributed in the hope that it will be useful, | # | but WITHOUT ANY WARRANTY; without even the implied warranty of | # | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # | GNU General Public License for more details. | # | | # | You should have received a copy of both licenses referred to here. | # | If you did not, or have any questions about Aubit licensing, please | # | contact afalout@ihug.co.nz | # +----------------------------------------------------------------------+ # # $Id: Makefile,v 1.17 2010/05/10 14:17:47 mikeaubury Exp $ # ROOT =../../.. #All stuff common to more then one Aubit compiler make file is there: include ${ROOT}/incl/Makefile-common LAYOUTDIR=$(ROOT)/lib/liblogical/layout_engine ## ================================================================== ## Options ## ================================================================== CFLAGS+=${WALL} -g -I$(ROOT)/lib/libaubit4gl -I$(ROOT)/incl ${PIC} -I$(LAYOUTDIR) -DALLOW_ZLIB LINKLIBS =-L$(ROOT)/lib -l${AUBITLIBFULL} OBJS=process_report.o ../common/a4gl_lle.o API_process.o QCOBJS=quick_check.o ../common/a4gl_lle.o \ $(LAYOUTDIR)/API_layout.o ifeq "${TARGET_OS}" "mingw" LD_EXE_FLAGS=--export-dynamic else LD_EXE_FLAGS=${RDYNAMIC} endif ifeq "${TARGET_OS}" "darwin" LD_EXE_FLAGS=-lz endif ifeq "${TARGET_OS}" "hpux" LD_EXE_FLAGS=-a1 -z -Wl,+s -Wl,-E -lnsl endif ## ================================================================== ## Targets ## ================================================================== all: ${ROOT}/bin/process_report ${ROOT}/bin/quick_check_logrep ${ROOT}/bin/process_report: API_process.h ${OBJS} ${LD} -g ${LDFLAGS} ${CFLAGS} ${OBJS} -o $@ -L$(LIBROOT) -l${AUBITLIBFULL} ${EXTRASYSTEMLIBS} ${LD_EXE_FLAGS} API_process.c: API_process.spec ../../bin/dlmagic $^ > $@ API_process.h: API_process.spec ../../bin/dlmagic $^ -h > $@ ## ================================================================== ## Clean ## ================================================================== $(LAYOUTDIR)/API_layout.h: $(LAYOUTDIR)/API_layout.spec $(MAKE) -C $(LAYOUTDIR) API_layout.h $(LAYOUTDIR)/API_layout.c: $(LAYOUTDIR)/API_layout.spec $(MAKE) -C $(LAYOUTDIR) API_layout.c qc:${ROOT}/bin/quick_check_logrep ${ROOT}/bin/quick_check_logrep: $(LAYOUTDIR)/API_layout.h ${QCOBJS} # ${CC} -rdynamic -g ${QCOBJS} -o $@ ${LFLAGS} ${LD} -g ${LDFLAGS} ${CFLAGS} -o $@ ${QCOBJS} ${LINKLIBS} ${EXTRASYSTEMLIBS} ${LD_EXE_FLAGS} clean: ${RM} *.o process_report ${ROOT}/bin/process_report API_process.h ${ROOT}/bin/quick_check_logrep \ API_process.c *~