Skip to content
Snippets Groups Projects
Commit f71f46c6 authored by rnc's avatar rnc
Browse files

initial version

parent f233103d
No related branches found
No related tags found
No related merge requests found
#
# makes the application part of the zmap.
#
CC = cc
CFLAGS = -g -pthread -std -msg_enable level3
# ZMAP code
APP_NAME = zmap
APP_LIB = libzmap.a
APP_HDRS = seqregion.h stringbucket.h zmapcontrol.h zmap.h
APP_OBJS = seqregion.o seqregionconvert.o stringbucket.o \
zmapbccol.o zmapcols.o zmapcontrol.o zmapsequence.o
# Need gtk and our own include files so specify a rule for .c -> .o
.c.o :
$(CC) -g `gtk-config --cflags` -I. -c $<
all: $(APP_NAME)
clean:
rm -f $(APP_NAME) $(APP_OBJ)
$(APP_OBJS): $(APP_HDRS)
$(APP_LIB): $(APP_OBJS)
ar ru $@ $?
$(APP_NAME): $(APP_OBJS)
$(CC) $(CFLAGS) -o $@ `gtk-config --libs` $(APP_OBJS)
########################## end of makefile ##################################
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