aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-03 20:33:43 +0100
committerMattias Andrée <m@maandree.se>2025-03-03 20:33:43 +0100
commit9e1c00c244e3a71a061e12e3ef9e6e27d67c6345 (patch)
tree5f17269e0ac06774dcae0ba2a2e1d773b1eb7400 /Makefile
parentmisc (diff)
downloadliblss16-master.tar.gz
liblss16-master.tar.bz2
liblss16-master.tar.xz
Initial work on ppmtolss16HEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f2b292b..0de3e2d 100644
--- a/Makefile
+++ b/Makefile
@@ -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)