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

initial version

parent ac16b985
No related branches found
No related tags found
No related merge requests found
#
# Makes the code that creates/manages/destroys an individual ZMap
#
#
# point to common make include file which contains all the rules etc.
#
ROOT_DIRECTORY = ..
MAKE_DIR = $(ROOT_DIRECTORY)/zmapMake
# local macros
CONT_PRIV_HDRS = zmapGFF_P.h
PUB_HDRS = zmapGFF.h
CONT_SRC = zmapGFF2parser.c
CONT_OBJ = zmapGFF2parser.o
#
# These must all be set for the common includes to work.
#
CURRENT_LIB = $(ZMAP_LIB)
CURRENT_OBJ = $(CONT_OBJ)
CURRENT_DEP = $(PUB_HDRS) $(CONT_PRIV_HDRS)
CURRENT_SRC = $(CONT_PRIV_HDRS) $(CONT_SRC)
CURRENT_INC =
#
# include all common defines
#
include $(MAKE_DIR)/common.defs
#
# override any of the common defines that you need to here...
#
#
# include all common targets
#
include $(MAKE_DIR)/common.targets
#
# include your own targets here.
#
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