diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-03 20:33:43 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-03 20:33:43 +0100 |
commit | 9e1c00c244e3a71a061e12e3ef9e6e27d67c6345 (patch) | |
tree | 5f17269e0ac06774dcae0ba2a2e1d773b1eb7400 /Makefile | |
parent | misc (diff) | |
download | liblss16-master.tar.gz liblss16-master.tar.bz2 liblss16-master.tar.xz |
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -17,7 +17,8 @@ LIB_NAME = lss16 BIN =\ - lss16toppm + lss16toppm\ + ppmtolss16 OBJ_LIB =\ liblss16_decoder_init.o\ @@ -58,6 +59,9 @@ include mk/$(LINKING).mk lss16toppm: lss16toppm.o $(BIN_DEP) $(CC) -o $@ $@.o $(LDFLAGS) $(BIN_LDFLAGS) +ppmtolss16: ppmtolss16.o $(BIN_DEP) + $(CC) -o $@ $@.o $(LDFLAGS) $(BIN_LDFLAGS) + liblss16.a: $(OBJ_LIB) @rm -f -- $@ $(AR) rc $@ $(OBJ_LIB) |