mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
9fed88020d
formerly just called "grok", is a simple database manager and UI builder that can: * keep phone and address lists (like a rolodex) * store phone call logs * keep todo lists * manage any other database after simple GUI-driven customization * customized data export, HTML export built in
57 lines
1.7 KiB
Plaintext
57 lines
1.7 KiB
Plaintext
--- Imakefile.orig Wed May 1 02:40:56 1996
|
|
+++ Imakefile Sat Aug 30 15:06:09 1997
|
|
@@ -10,10 +10,10 @@
|
|
* GLIB. The documentation (Manual.ps) is not installed, that's up to you.
|
|
*/
|
|
|
|
-GBIN = /usr/local/bin
|
|
-GLIB = /usr/local/lib
|
|
+GBIN = ${X11BASE}/bin
|
|
+GLIB = ${X11BASE}/lib/X11/xmbase-grok
|
|
|
|
-CDEBUGFLAGS = -O3 -m486 /* to turn optimizing off, comment this line out */
|
|
+CDEBUGFLAGS = -pipe -O /* to turn optimizing off, comment this line out */
|
|
|
|
|
|
/*
|
|
@@ -53,10 +53,10 @@
|
|
AllTarget(grok)
|
|
NormalProgramTarget(grok,y.tab.o $(SRC:.c=.o),,,$(LIB))
|
|
InstallProgram(grok,$(GBIN))
|
|
-InstallProgram(grok.hlp,$(GLIB))
|
|
+InstallNonExecFile(grok.hlp,$(GLIB))
|
|
InstallMultiple(Manual.ps grok.hlp,$(GLIB))
|
|
InstallMultiple($(DEMO),$(GLIB)/grokdir)
|
|
-InstallNonExec(grok.xpm,$(LIBDIR)/pixmaps)
|
|
+InstallNonExec(grok.xpm,$(X11BASE)/include/X11/pixmaps)
|
|
|
|
|
|
$(SRC:.c=.o): config.h grok.h proto.h form.h
|
|
@@ -88,14 +88,18 @@
|
|
|
|
|
|
#---------------------------------------------------------------
|
|
-Manual.ps: doc/main.dvi
|
|
- dvips -f doc/main.dvi >Manual.ps
|
|
- -rm -f doc/jobname.cont doc/main.cont doc/main.log
|
|
-
|
|
-
|
|
-doc/main.dvi: doc/formedit.tex doc/grammar.tex doc/macro.tex doc/main.tex
|
|
- cd doc; tex main.tex; tex main.tex
|
|
- -rm -f doc/jobname.cont doc/main.cont doc/main.log
|
|
+#
|
|
+# Don't want the need to have TeX installed for the make install target !
|
|
+# -Andreas
|
|
+#
|
|
+# Manual.ps: doc/main.dvi
|
|
+# dvips -f doc/main.dvi >Manual.ps
|
|
+# -rm -f doc/jobname.cont doc/main.cont doc/main.log
|
|
+#
|
|
+#
|
|
+# doc/main.dvi: doc/formedit.tex doc/grammar.tex doc/macro.tex doc/main.tex
|
|
+# cd doc; tex main.tex; tex main.tex
|
|
+# -rm -f doc/jobname.cont doc/main.cont doc/main.log
|
|
|
|
clean::
|
|
-rm -f y.tab.h y.tab.c lex.yy.c grok y.output *.shar*
|