File: Makefile

package info (click to toggle)
pscan-chip 1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,136 kB
  • sloc: cpp: 1,842; sh: 24; makefile: 17
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

PROGS=pscan_chip fasta_to_raw

all: $(PROGS)

pscan_chip: pscan_chip.cpp
	$(CXX) $(CXXFLAGS)  pscan_chip.cpp -o pscan_chip $(LDFLAGS) -lgsl -lgslcblas

fasta_to_raw: fasta_to_raw.cpp
	$(CXX) $(CXXFLAGS)  fasta_to_raw.cpp -o fasta_to_raw $(LDFLAGS)

clean:
	rm -f $(PROGS)