chiark / gitweb /
Debianize new mup version
[mup] / mup / makefile
index 8acf0d6d7cf8d88f34bd1eb8aefad6495986fd6a..fdd2641a64ffc8b9e7a1b127e2e370b1bec4899a 100644 (file)
@@ -38,8 +38,8 @@
 # You could change this to /usr/local or your own space if you like.
 PREFIX = /usr
 BINDIR = $(PREFIX)/bin
-MANDIR = $(PREFIX)/man/man1
-DOCDIR = $(PREFIX)/share/doc/packages/mup
+MANDIR = $(PREFIX)/share/man/man1
+DOCDIR = $(PREFIX)/share/doc/mup
 
 # This is the name of your C compiler.
 # cc would be another common choice.
@@ -52,7 +52,7 @@ CPPCOMPILER = g++
 # -O option turns on optimization for most C compilers.
 # You can add other options, if you like, as appropriate for your C compiler.
 # Another common addition would be -g to get debugging information.
-CFLAGS = -O
+CFLAGS = -O2 -g
 
 # You can change this if your X libraries and headers are somewhere else
 # (like /usr/X11R6).
@@ -62,13 +62,13 @@ X_LOCATION = /usr/X11
 FLTK_INCLUDE = $(X_LOCATION)/include
 
 # You can use fltk_jpeg or jpeg library, whichever you have
-JPEGLIB = fltk_jpeg
+JPEGLIB = jpeg
 
 # You can use fltk_png or png library, whichever you have
-PNGLIB = fltk_png
+PNGLIB = png
 
 # You can use fltk_z or z library, whichever you have
-ZLIB = fltk_z
+ZLIB = z
 
 #-----------------------------------------------------------------------