Makefile: build + link more source files

This commit is contained in:
Harald Welte 2022-09-11 20:48:22 +02:00
parent 36f1170dec
commit 19435b7348
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
LIBS=-lasan -ltalloc -losmocore -losmovty -losmoctrl -losmoabis
DEFS=-DPACKAGE_VERSION=\"0.0\"
LIBS=-lasan -ltalloc -losmocore -losmovty -losmogsm -losmoctrl -losmoabis
CFLAGS=-Wall -DPACKAGE_VERSION=\"0.0\"
%.o: %.c
$(CC) $(DEFS) -o $@ -c $^
$(CC) $(CFLAGS) -o $@ -c $^
v5le: main.o
v5le: main.o v5x_data.o lapv5.o
$(CC) -o $@ $^ $(LIBS)
clean: