mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-08-25 09:02:29 +02:00
17 lines
306 B
Makefile
17 lines
306 B
Makefile
CFLAGS=-I../.. -c -Wall -Werror -fpic -g -Wno-unused-variable
|
|
|
|
all: resgen.so helloworld.so
|
|
|
|
resgen.so: resgen.o
|
|
$(CC) -shared -Wall -Werror -g -o resgen.so resgen.o
|
|
|
|
helloworld.so: helloworld.o
|
|
$(CC) -shared -Wall -Werror -g -o helloworld.so helloworld.o
|
|
|
|
clean:
|
|
-rm -rf *.o *.so
|
|
|
|
.PHONY : all clean
|
|
|
|
|