aboutsummaryrefslogtreecommitdiffstats
path: root/src/profstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2020-06-29 12:28:21 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2020-06-29 12:28:21 -0400
commit6ff30cb68956d41961c7dcd9302ab0c3c9d0a536 (patch)
treeb142d5b66678bdda78b72a6506ecfe56556f88d7 /src/profstats
parentFix #3481 - pandoc needs access to /etc/texmf (diff)
downloadfirejail-6ff30cb68956d41961c7dcd9302ab0c3c9d0a536.tar.gz
firejail-6ff30cb68956d41961c7dcd9302ab0c3c9d0a536.tar.zst
firejail-6ff30cb68956d41961c7dcd9302ab0c3c9d0a536.zip
minor makefile fixes
Diffstat (limited to 'src/profstats')
-rw-r--r--src/profstats/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profstats/Makefile.in b/src/profstats/Makefile.in
index 4ada23c23..2beaa3ed6 100644
--- a/src/profstats/Makefile.in
+++ b/src/profstats/Makefile.in
@@ -1,14 +1,14 @@
1all: ../../etc/profstats 1all: profstats
2 2
3include ../common.mk 3include ../common.mk
4 4
5%.o : %.c $(H_FILE_LIST) 5%.o : %.c $(H_FILE_LIST)
6 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@ 6 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@
7 7
8../../etc/profstats: $(OBJS) 8profstats: $(OBJS)
9 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS) 9 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(EXTRA_LDFLAGS)
10 10
11clean:; rm -fr *.o ../../etc/profstats *.gcov *.gcda *.gcno *.plist 11clean:; rm -fr *.o profstats *.gcov *.gcda *.gcno *.plist
12 12
13distclean: clean 13distclean: clean
14 rm -fr Makefile 14 rm -fr Makefile