-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
25 lines (19 loc) · 813 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Author: Patrik Cerbak
# Login: xcerba00
#
CC = gcc
CFLAGS = -std=c11 -Wall -Wextra
SRC_DIR = src/
TEST_DIR = test/
dns: $(SRC_DIR)arguments.o $(SRC_DIR)error.o $(SRC_DIR)message.o $(SRC_DIR)response.o $(SRC_DIR)sending.o
$(CC) $(CFLAGS) $(SRC_DIR)arguments.o $(SRC_DIR)error.o $(SRC_DIR)message.o $(SRC_DIR)response.o $(SRC_DIR)sending.o $(SRC_DIR)main.c -o $@
%.o: %.c
$(CC) $(CFLAGS) -c $^ -o $@
test: $(SRC_DIR)arguments.o $(SRC_DIR)error.o $(SRC_DIR)message.o $(SRC_DIR)response.o $(SRC_DIR)sending.o dns
$(CC) $(CFLAGS) $(SRC_DIR)arguments.o $(SRC_DIR)error.o $(SRC_DIR)message.o $(SRC_DIR)response.o $(SRC_DIR)sending.o $(TEST_DIR)tests.c -o test/tests
test/tests
# Uncomment, if Python 3 is availiable on the system:
# python3 test/tests.py
clean:
rm -f $(SRC_DIR)*.o dns $(TEST_DIR)tests