blob: c3ccaeb05cbe81b426cb409afa5c5f6389b47057 (
plain)
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
|
PROGRAM_NAME=diff-dd
PROGRAM_VERSION=1.0
# Program name is used in the tests to locate the executable file
export PROGRAM_NAME
CC=gcc
CFLAGS=-Wall
SOURCES=*.c
HEADERS=*.h
all: $(SOURCES) $(HEADERS) program_info_header
$(CC) $(CFLAGS) -o $(PROGRAM_NAME) $(SOURCES)
program_info_header:
echo "#define PROGRAM_NAME_STR \"$(PROGRAM_NAME)\"" >program_info.h
echo "#define PROGRAM_VERSION_STR \"$(PROGRAM_VERSION)\"" >>program_info.h
.PHONY: test clean
test: all
$(MAKE) -C tests
clean:
rm -f *.o *~ $(PROGRAM_NAME) program_info.h
|