Add a file for shared functions
New common.[hc] files where shared functions between surf and webkitextension will be put. First addition is die().
This commit is contained in:
parent
7ea0c2f7f8
commit
1901359efa
5 changed files with 24 additions and 18 deletions
6
Makefile
6
Makefile
|
|
@ -4,9 +4,9 @@
|
|||
|
||||
include config.mk
|
||||
|
||||
SRC = surf.c
|
||||
SRC = surf.c common.c
|
||||
OBJ = $(SRC:.c=.o)
|
||||
LIBSRC = libsurf-webext.c
|
||||
LIBSRC = libsurf-webext.c common.c
|
||||
LIBOBJ = $(LIBSRC:.c=.lo)
|
||||
|
||||
all: options libsurf-webext.la surf
|
||||
|
|
@ -38,7 +38,7 @@ config.h:
|
|||
libsurf-webext.la: $(LIBOBJ)
|
||||
@echo libtool link $@
|
||||
@$(LIBTOOL) --mode link --tag CC $(CC) $(LIBLDFLAGS) -o $@ \
|
||||
$(LIBOBJ) -rpath $(DESTDIR)$(LIBPREFIX)
|
||||
$(LIBOBJ) $(LIB) -rpath $(DESTDIR)$(LIBPREFIX)
|
||||
|
||||
surf: $(OBJ)
|
||||
@echo CC -o $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue