dashboard
repositories
filestore
activity
search
login
main
/
dnscomp
mirror of
https://github.com/Chizi123/dnscomp.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
split dns into own file and printing into own function
Joel Grunbaum
2020-10-18
8ee2bac0af0a194d99fb1073b5362b0cd5c07130
[dnscomp.git]
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
CC=gcc
OBJ=main.o dns.o
DEPS=dns.h
CFLAGS=-g
default: all
%.o: %.c $(DEPS)
$(CC) $(CFLAGS) -c -o $@ $<
all: $(OBJ)
$(CC) $(CFLAGS) $^