aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authornathansmith <nathansmith@posteo.com>2025-05-03 01:46:21 +0000
committernathansmith <nathansmith@posteo.com>2025-05-03 01:46:21 +0000
commit2d2f143d248ef9f173f711108feb770efdfe7d21 (patch)
treec82af5d97f4d4594f2630eabe9b31cec935ebf50 /src/Makefile
parentffd314a245632a85ba5f310e8d86937091886d4d (diff)
downloadsldj-2d2f143d248ef9f173f711108feb770efdfe7d21.tar.gz
sldj-2d2f143d248ef9f173f711108feb770efdfe7d21.tar.bz2
sldj-2d2f143d248ef9f173f711108feb770efdfe7d21.zip
Shorter lines
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 10581e7..17381b3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -9,7 +9,8 @@ LIBSLDJ = libsldj/libsldj.so
%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $<
$(TARGET): $(OBJECTS) $(LIBSLDJ)
- $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) $(wildcard "libsldj/*.o") $(LDFLAGS)
+ $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) $(wildcard "libsldj/*.o") \
+$(LDFLAGS)
$(LIBSLDJ): $(wildcard libsldj/*.c libsldj/*.h)
@$(MAKE) -C libsldj