Skip to content
Snippets Groups Projects
Commit ab1035e9 authored by edgrif's avatar edgrif
Browse files

initial version

parent 0fda3d8d
No related branches found
No related tags found
No related merge requests found
#
# ZMap main makefile
#
# Can be used to build both the ZMap library and the ZMap application.
#
# Add directories to this list as they are sorted out.
MAKE_DIRS = zmapmanager
all: forcemake platform
@for d in $(MAKE_DIRS); do \
(cd $$d ; echo ; echo 'make '$@' in '$$d ; /usr/bin/posix/make $@ ; echo) ; \
done
clean: forcemake platform
@for d in $(MAKE_DIRS); do \
(cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \
done
# bootstrap stuff, without these make can't find the files to include which define
# all the macros/rules and dependencies.
#
# Must come after any default rule specified in this file as it includes
# some of its own commonly used rules.
#
ROOT_DIRECTORY = .
MAKEDEFS_DIR = $(ROOT_DIRECTORY)/zmapMake
include $(MAKEDEFS_DIR)/common.make
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment