differentiate object files

This commit is contained in:
TheSola10 2025-04-05 21:40:42 +02:00
parent 557f11ff93
commit bc61e1c05e
Signed by: thesola10
GPG Key ID: 89245619BEBB95BA
2 changed files with 5 additions and 1 deletions

1
umdiff/.gitignore vendored
View File

@ -1,2 +1,3 @@
umdiff
*.rl
librsync.build

View File

@ -1,5 +1,5 @@
TARGET = umdiff
C_OBJS = main.o rdiff.o
C_OBJS = main.c.o rdiff.c.o file.c.o patch.c.o
OBJS = $(C_OBJS)
CMAKE := cmake
@ -24,6 +24,9 @@ usage.rl: USAGE
%.rl.h: %.rl
$(RAGEL) $< -o $@
%.c.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
librsync:
git clone https://github.com/librsync/librsync