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 (33 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
#
# Author: Teunis van Beelen
#
# email: teuniz@gmail.com
#
#

CC = gcc
CFLAGS = -Wall -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -Wtype-limits -Wfatal-errors -g -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE

all: edflib_test


edflib_test : unittest.o
	$(CC) unittest.o -o edflib_test -ledf

unittest.o : unittest.c
	$(CC) $(CFLAGS) -c unittest.c -o unittest.o

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


#
#
#
#