mirror of
https://github.com/davatorium/rofi.git
synced 2025-03-03 16:05:20 -05:00
13 lines
269 B
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
|
|
./$^
|