moved marshaller lib files to new dir

This commit is contained in:
overflowerror 2021-05-04 11:05:22 +02:00
parent d4a957fc03
commit 02f69dd2b2
3 changed files with 2 additions and 2 deletions

View file

@ -37,8 +37,8 @@ obj/%.o: src/%.c obj
obj:
@mkdir -p obj
marshaller-demo: marshaller/gen/demo.tab.c marshaller/demo/demo.c marshaller/marshaller.c $(A_LIB_NAME)
$(CC) $(CFLAGS) -Imarshaller/demo/ -Isrc/ -Imarshaller/ -o $@ $^
marshaller-demo: marshaller/gen/demo.tab.c marshaller/demo/demo.c marshaller/lib/marshaller.c $(A_LIB_NAME)
$(CC) $(CFLAGS) -Imarshaller/demo/ -Isrc/ -Imarshaller/lib/ -o $@ $^
marshaller/gen/demo.tab.c: marshaller/demo/demo.h marshaller/marshaller-gen
./marshaller/marshaller-gen -o $@ $<