1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-03-03 16:05:20 -05:00
rofi/test/Makefile

13 lines
269 B
Makefile

CC=gcc
CFLAGS=-I../include/ -I../ -std=c99 -fprofile-arcs -ftest-coverage -g3
SOURCES=\
history-test.c\
../config/config.c\
../source/history.c
history-test: $(SOURCES)
$(CC) -o $@ $^ `pkg-config --libs --cflags glib-2.0` $(CFLAGS)
test: history-test
./$^