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
2011-09-21 17:19:10 +02:00

21 lines
461 B
Makefile

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