Skip to content

Commit ffef131

Browse files
committed
Update build system to leverage libgotcha's "cp" replacement feature
Now, the only symlink one has to create is one to the libgotcha/ tree.
1 parent 12888df commit ffef131

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/libgotcha.h
2-
/libgotcha.mk
3-
/libgotcha_repl.h
1+
/libgotcha
42

53
*.a
64
*.o

Makefile

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
CFLAGS += -std=c99 -g -O2 -fpic -fno-optimize-sibling-calls -Wall -Wextra -Wpedantic
2-
CPPFLAGS += -D_DEFAULT_SOURCE
2+
CPPFLAGS += -I$(LIBGOTCHA_PATH) -D_DEFAULT_SOURCE
33

4-
-include libgotcha.mk
4+
CP := objcopy -Wsigaction --globalize-symbol libgotcha_sigaction --globalize-symbol libgotcha_pthread_sigmask --globalize-symbol libgotcha_sigaddset --globalize-symbol libgotcha_sigfillset
55

66
.PHONY: all
77
all: libas-safe.so
88

9-
libas-safe.so: libgotcha.h
10-
11-
libgotcha.a: libgotcha/libgotcha.a
12-
objcopy -Wsigaction --globalize-symbol libgotcha_sigaction --globalize-symbol libgotcha_pthread_sigmask --globalize-symbol libgotcha_sigaddset --globalize-symbol libgotcha_sigfillset $< $@
13-
149
.PHONY: clean
1510
clean:
1611
$(RM) *.a *.o *.so
12+
13+
include libgotcha/libgotcha.mk

as-safe.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "libgotcha.h"
1+
#include "libgotcha_api.h"
22
#include "libgotcha_repl.h"
33

44
#include <assert.h>

0 commit comments

Comments
 (0)