File: makefile

package info (click to toggle)
seaview 20021127-4
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 620 kB
  • ctags: 685
  • sloc: cpp: 11,644; makefile: 59; sh: 19
file content (19 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FLTK = ../fltk-1.1.0

OBJECTS = seaview.o use_mase_files.o regions.o load_seq.o align.o xfmatpt.o comlines.o chooser_plus.o resource.o nexus.o old_file_chooser.o

CFLAGS  = -c $(OPT) -I. $(DEBUG)

CXX = g++

seaview : $(OBJECTS) 
	$(CXX) $(DEBUG) -o $@ $(OBJECTS) `fltk-config --ldflags`


.SUFFIXES:	.cxx .h .o

.cxx.o :
	$(CXX) $(CFLAGS) $<

clean :
	rm -f seaview $(OBJECTS)