mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
2fad50c06e
skk port is a meta-port and (presumably) does not require skk-elisp to run. I have removed the skk-elisp dependency from skk. The skkfep port did not depend on skk-elisp explicitly, only via the skk port.
24 lines
515 B
Plaintext
24 lines
515 B
Plaintext
--- Makefile.orig Tue Jul 7 00:31:14 1998
|
|
+++ Makefile Wed Aug 2 03:24:50 2000
|
|
@@ -2,16 +2,16 @@
|
|
# Makefile for skkfep
|
|
#
|
|
all: genMakefile
|
|
- make -f genMakefile all
|
|
+ $(MAKE) -f genMakefile all
|
|
|
|
skkfep: genMakefile
|
|
- make -f genMakefile skkfep
|
|
+ $(MAKE) -f genMakefile skkfep
|
|
|
|
simpledic: genMakefile
|
|
- make -f genMakefile simpledic
|
|
+ $(MAKE) -f genMakefile simpledic
|
|
|
|
clean: genMakefile
|
|
- make -f genMakefile clean
|
|
+ $(MAKE) -f genMakefile clean
|
|
rm -f genMakefile
|
|
|
|
genMakefile: protoMakefile config.h
|