File: Makefile.in

package info (click to toggle)
eegdev 0.2-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,108 kB
  • sloc: ansic: 32,298; sh: 10,962; makefile: 252; lex: 138; yacc: 130; xml: 29
file content (13 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
LIBS = -leegdev
programs = eegdev_acq@EXEEXT@ @optional_examples@

all: $(programs)

eegdev_acq@EXEEXT@: eegdev_acq.c
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)

recinxdf@EXEEXT@: acquisition.o recinxdf.o
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) -lxdffileio

clean: 
	$(RM) *.o $(programs)