diff options
| author | Giuseppe Baruffa <gbaruffa@users.noreply.github.com> | 2007-11-05 13:05:07 +0000 |
|---|---|---|
| committer | Giuseppe Baruffa <gbaruffa@users.noreply.github.com> | 2007-11-05 13:05:07 +0000 |
| commit | 95d760a1735517347355ff875549d85ebbc72eb7 (patch) | |
| tree | e1e1dfeca50f06b1161db44bd66ebd8780337f2e /OPJViewer/Makefile | |
| parent | 123a680669995d50f354dd0159c83e7803a70ef3 (diff) | |
Fixed a bug which prevented JPWL from working on multi-tiled images; added some more fields in the interface info structures (keep a list of markers, save start packet number for each tile)
Diffstat (limited to 'OPJViewer/Makefile')
| -rw-r--r-- | OPJViewer/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OPJViewer/Makefile b/OPJViewer/Makefile index c626b062..75f57230 100644 --- a/OPJViewer/Makefile +++ b/OPJViewer/Makefile @@ -13,18 +13,18 @@ MODULES = $(OPJV_SRCS:.cpp=.o) all: opjviewer lib
.cpp.o:
- $(CC) $(CFLAGS) -c $< -o $@
+ $(CC) $(CFLAGS) -c $< -o $@
lib:
- cd ../jpwl; make
+ cd ../jpwl; make
opjviewer: $(OPJV_SRCS) lib
$(CC) $(CFLAGS) -I .. $(OPJV_SRCS) -o OPJViewer -L ../jpwl -lopenjpeg_JPWL -lm -lstdc++ -ltiff $(shell wx-config-2.8 --libs)
clean:
- rm -f OPJViewer *.o *.a
- cd ../libopenjpeg; rm -f *.o
+ rm -f OPJViewer *.o *.a
+ cd ../libopenjpeg; rm -f *.o
|
