Filter:   InfoImg
download makefile.32
Language: NonCode
LOC: 0
Project Info
MultiSlice RTP Environment(yhs)
Server: SourceForge
Type: cvs
...eForge\y\yhs\yhs\root\root\
   app_glob.c
   command_run.c
   command_slice.c
   ctomass.c
   edge.c
   editing_tools.c
   exit.c
   FILE_ID.DIZ
   file_viewer.c
   file2.raw
   filters.c
   glxdino.c
   glxmotif.c
   glxsimple.c
   gpl.html
   icon.h
   initapp.c
   inject.c
   label.c
   log.h
   logmen.h
   logo.h
   main.h
   makefile.32
   makefile.64
   makefile.f32
   measure.c
   menu.c
   multislice.c
   neighbour.c
   open.c
   open.old.c
   paperplane.c
   print.c
   program1.c
   region.c
   region_ops.c
   save.c
   slice.c
   split_merge.c
   textfun.c
   version.c
   viewslice.c
   wals.study
   watershed.c
   xbutton.c
   xmenu.c
   xwins.h
   xwinutil.c
   ys_ext.c
   zoom.c
   zoom2.c

##################################################
#                                                #
#   Makefile for CT Image Application Program    #
#                                                #
##################################################
# Some common definitions...

RM = rm -f
CXX = cc

# Compiler flags, paths for include files and libraries

CFLAGS = -O2 -32 -OPT:fast_io=ON -mips1
INCLUDES = -I. -I/usr/include -I/usr/include/X11 -I/usr/include/sys
XMLIBS = -lXm -lXt -lXmu -lX11 -lmalloc -lGL -lGLU -lXext -lm

FILES = slice.o \
        label.o \
        menu.o \
        open.o \
        save.o \
        exit.o \
        measure.o \
        region.o \
        edge.o \
        ctomass.o \
	watershed.o \
	editing_tools.o \
	region_ops.o \
	zoom.o \
	split_merge.o \
	neighbour.o \
        print.o \
	filters.o \
	version.o

# Rule to create .o files from .c files
.c.o:
	$(RM) $@
	$(CXX) -c $(CFLAGS) $(INCLUDES) $*.c
	
# Targets...

all::	slice

slice: $(FILES)
	$(RM) $@
	$(CXX) -o $@ $(CFLAGS) $(INCLUDES) $(FILES) $(XMLIBS) -lm
	strip slice