1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# Makefile for ffcall
#### Start of system configuration section. ####
# Directories used by "make install":
prefix = /usr/local
local_prefix = /usr/local
exec_prefix = $(prefix)
libdir = $(exec_prefix)/lib
includedir = $(prefix)/include
mandir = $(exec_prefix)/man
# Programs used by "make":
RM = rm -f
#### End of system configuration section. ####
SHELL = /bin/sh
all : force
$(MAKE) -C avcall -f Makefile.mingw32 all
$(MAKE) -C vacall -f Makefile.mingw32 all
$(MAKE) -C trampoline -f Makefile.mingw32 all
$(MAKE) -C callback -f Makefile.mingw32 all
check : force
$(MAKE) -C avcall -f Makefile.mingw32 check
$(MAKE) -C vacall -f Makefile.mingw32 check
$(MAKE) -C trampoline -f Makefile.mingw32 check
$(MAKE) -C callback -f Makefile.mingw32 check
mostlyclean : force
$(MAKE) -C avcall -f Makefile.mingw32 mostlyclean
$(MAKE) -C vacall -f Makefile.mingw32 mostlyclean
$(MAKE) -C trampoline -f Makefile.mingw32 mostlyclean
$(MAKE) -C callback -f Makefile.mingw32 mostlyclean
clean : force
$(MAKE) -C avcall -f Makefile.mingw32 clean
$(MAKE) -C vacall -f Makefile.mingw32 clean
$(MAKE) -C trampoline -f Makefile.mingw32 clean
$(MAKE) -C callback -f Makefile.mingw32 clean
distclean : force
$(MAKE) -C avcall -f Makefile.mingw32 distclean
$(MAKE) -C vacall -f Makefile.mingw32 distclean
$(MAKE) -C trampoline -f Makefile.mingw32 distclean
$(MAKE) -C callback -f Makefile.mingw32 distclean
$(RM) config.status config.log config.cache Makefile
maintainer-clean : force
$(MAKE) -C avcall -f Makefile.mingw32 maintainer-clean
$(MAKE) -C vacall -f Makefile.mingw32 maintainer-clean
$(MAKE) -C trampoline -f Makefile.mingw32 maintainer-clean
$(MAKE) -C callback -f Makefile.mingw32 maintainer-clean
$(RM) config.status config.log config.cache Makefile
force :
|