From: b Date: Thu, 20 Oct 2022 21:38:05 +0000 (+0000) Subject: Join frame inserting / hiding / revealing tool X-Git-Url: http://bicyclesonthemoon.info/git-projects/?a=commitdiff_plain;h=35be19d0cb6c467965b3832aaf74ec02a01f263c;p=ott%2Fenhance Join frame inserting / hiding / revealing tool --- 35be19d0cb6c467965b3832aaf74ec02a01f263c diff --cc makefile index 86aeda6,4568ed0..2f1aa7e --- a/makefile +++ b/makefile @@@ -1,27 -1,18 +1,40 @@@ -CC=gcc -CF=-g -Wall -LF=-lIL -LF2=-lcgi - -all: insert extract seediff insertframe ++<<<<<<< HEAD +CC=g++ +CF=-g -Wall +LF=-lIL +LF2=-lcgi + - all: 403 npb npbd npb-ong1 npbd-ong1 bluenh bluenhd ++all: 403 npb npbd npb-ong1 npbd-ong1 bluenh bluenhd insert extract seediff insertframe + +npb: npb-ong1.cpp makefile + $(CC) $(CF) $(LF) -o npb-ong1 npb-ong1.cpp + +npb: npb.cpp makefile + $(CC) $(CF) $(LF) -o npb npb.cpp + +403: 403.cpp makefile + $(CC) $(CF) $(LF) -o 403 403.cpp + +npbd-ong1: npb npbd-ong1.cpp makefile + $(CC) $(CF) -o npbd-ong1 npbd-ong1.cpp $(LF2) + +npbd: npb npbd.cpp makefile + $(CC) $(CF) -o npbd npbd.cpp $(LF2) + +bluenh: bluenh.cpp makefile + $(CC) $(CF) $(LF) -o bluenh bluenh.cpp + +bluenhd: bluenhd.cpp makefile + $(CC) $(CF) -o bluenhd bluenhd.cpp $(LF2) + + insert: insert.c makefile + $(CC) $(CF) $(LF) -o insert insert.c + + extract: extract.c makefile + $(CC) $(CF) $(LF) -o extract extract.c + + seediff: seediff.c makefile + $(CC) $(CF) $(LF) -o seediff seediff.c + + insertframe: insertframe.c makefile + $(CC) $(CF) -o insertframe insertframe.c $(LF2)