IPv6 iptables exceptions (for OSPF)
[svn/Prometheus-QoS/.git] / Makefile
index 2145cfb07afb23c8f8b7bd459961e22ab79995f9..0ca93d5cd3b21ef3d869194d64526361bc48d543 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,9 +5,16 @@ prefix=/usr
 mandir=$(prefix)/share/man
 sbindir=$(prefix)/sbin
 sysconfdir=/etc
+OBJECTS=parsehosts.o parseiptables.o parselogs.o ipv4subnets.o ipv6subnets.o json.o htmlandlogs.o help.o prometheus.o
+HEADERS=cll1-0.6.2.h ipstruct.h
 
 main: prometheus
-       $(CC) -o prometheus parselog.c prometheus.c
+
+%.o: %.c $(HEADERS)
+       gcc -c $< -o $@
+
+prometheus: $(OBJECTS)
+       $(CC) $(OBJECTS) -o prometheus
 
 deb: main
        debian/prometheus.debian
@@ -38,4 +45,4 @@ install: main
 
 clean:
        rm -f prometheus
-       rm -f optinal-tools/prometheus-stats
+       rm -f $(OBJECTS)
This page took 0.08729 seconds and 4 git commands to generate.