aboutsummaryrefslogtreecommitdiffstats
path: root/src/profstats/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/profstats/Makefile')
-rw-r--r--src/profstats/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/profstats/Makefile b/src/profstats/Makefile
new file mode 100644
index 000000000..0274aead2
--- /dev/null
+++ b/src/profstats/Makefile
@@ -0,0 +1,17 @@
1.PHONY: all
2all: profstats
3
4ROOT = ../..
5include $(ROOT)/src/common.mk
6
7%.o : %.c $(H_FILE_LIST) ../include/common.h $(ROOT)/config.mk
8 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
9
10profstats: $(OBJS) $(ROOT)/config.mk
11 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
12
13.PHONY: clean
14clean:; rm -fr *.o profstats *.gcov *.gcda *.gcno *.plist
15
16.PHONY: distclean
17distclean: clean