File: Makefile

package info (click to toggle)
edflib 1.27-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 680 kB
  • sloc: ansic: 9,078; makefile: 68; sh: 12
file content (12 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
CC = gcc
CFLAGS = -O2 -Wall -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE
LDLIBS = -lm

programs = sine_generator sweep_generator test_edflib test_generator

all: $(programs)

$(programs): edflib.o

clean:
	$(RM) *.o $(programs) *.[be]df