aboutsummaryrefslogtreecommitdiffstats
path: root/src/firemon/Makefile.in
blob: d3ffe5d3f7b7fadfc68291a31e3ca62b2d7abf72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: firemon

include ../common.mk

%.o : %.c $(H_FILE_LIST)
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@

firemon: $(OBJS) ../lib/common.o ../lib/pid.o
	$(CC)  $(LDFLAGS) -o $@ $(OBJS) ../lib/common.o ../lib/pid.o $(LIBS) $(EXTRA_LDFLAGS)

clean:; rm -f *.o firemon *.gcov *.gcda *.gcno

distclean: clean
	rm -fr Makefile