1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-14 11:13:55 +02:00
gluon-packages/libs/libpacketmark/src/Makefile
Matthias Schiffer 16bf1f9ff1
libpacketmark: fix call of initialization function (again)
The previous fix for ARM broke the constructor call on MIPS. Remove the
-nostartfiles linker flag to fix this.
2017-11-04 20:54:04 +01:00

5 lines
141 B
Makefile

all: libpacketmark.so
libpacketmark.so: libpacketmark.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -Wall -shared -fPIC -o $@ $^ -ldl $(LDLIBS)