aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: cc596b2bb1a035c613bff762dd69e65b445ac5bf (plain) (blame)
1
2
3
4
5
6
UNIVERSAL_SERVICE_DIR=universalservice
CFLAGS=-I${UNIVERSAL_SERVICE_DIR}/include -g -I${UNIVERSAL_SERVICE_DIR}/examples/string -std=c89 -Wall -pedantic -Werror
LDFLAGS=-L${UNIVERSAL_SERVICE_DIR} -luniversalservice -L${UNIVERSAL_SERVICE_DIR}/examples/string -lunsstring

flatrate: main.c
	$(CC) main.c -o flatrate $(CFLAGS) $(LDFLAGS)