#
#
# Author: Teunis van Beelen
#
# email: teuniz@gmail.com
#
#

# unittest Makefile modified to work for autopkgtests

CC = gcc
CFLAGS = -Wall -Wextra -Wshadow -Wformat-nonliteral -Wformat-security -Wtype-limits -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

#
#
#
#





