aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 487027133174d67f4010fa07ea4d94f9c48bb491 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: all

CFLAGS=-Wall -Wextra -Werror -pedantic 
DEBUGF=-O0 -v -g
SRCDIR=src
MODDIR=$(SRCDIR)/modules

GLIBF=`pkg-config --cflags --libs glib-2.0 gobject-2.0`

hostnamed: 
    gcc -o bin/out.bin $(CFLAGS) $(DEBUGF) $(GLIBF) $(SRCDIR)/main.c