Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dlight/Makefile
2012-08-22 14:26:58 +02:00

24 lines
607 B
Makefile

CC = gcc
LDFLAGS = -lxml2 -lcurl -lpcre
CFLAGS = -g -Wall -I/usr/include/libxml2
PROGRAMS = dlight dlight-compile dlight-read-config dlight-filter-check
all : $(PROGRAMS)
install : $(PROGRAMS)
cp $^ $(HOME)/bin/
dlight : dlight.o buffer.o env.o http.o rss.o lockfile.o filter.o cconf.o \
proc-cache.o dlhist.o hash.o error.o
dlight-compile : compile.o buffer.o env.o lockfile.o filter.o cconf.o \
error.o
dlight-read-config : read-config.o buffer.o env.o cconf.o error.o
dlight-filter-check: filter-check.o filter.o error.o
dlight-% : %.o
$(CC) $(LDFLAGS) -o $@ $^
clean :
$(RM) *.o $(PROGRAMS)