d3858ffc26
Now major include files are comming from main Makefile, module need to add just their specific include path. To work make the include path absolute.
15 lines
265 B
Makefile
15 lines
265 B
Makefile
CC = gcc
|
|
export CFLAGS = $(INCLUDE) -O0 -g3
|
|
LFLAGS =
|
|
DEPS =
|
|
OBJS = rsa.o sha256.o sha512.o sha1.o key.o peerutils.o ephemeral.o aes.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
all: $(OBJS)
|
|
cd encoding; make all;
|
|
|
|
clean:
|
|
rm -f *.o
|
|
cd encoding; make clean;
|