diff options
author | LAN-TW <lantw44@gmail.com> | 2013-04-15 19:44:58 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2013-04-15 19:44:58 +0800 |
commit | 5907d98812497c370fe72633a3a58ef35cea2064 (patch) | |
tree | e68a1385ac686ea744fe40509813a4f75f89f399 | |
parent | af9e34dcb488f971b5bc6d6471b271fc3b27e9f1 (diff) | |
download | taiwan-online-judge-lantw44-5907d98812497c370fe72633a3a58ef35cea2064.tar.gz taiwan-online-judge-lantw44-5907d98812497c370fe72633a3a58ef35cea2064.tar.zst taiwan-online-judge-lantw44-5907d98812497c370fe72633a3a58ef35cea2064.zip |
judgk/Makefile.in: add .PHONY target
-rw-r--r-- | judgk/Makefile.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/judgk/Makefile.in b/judgk/Makefile.in index b248d0a..073e5be 100644 --- a/judgk/Makefile.in +++ b/judgk/Makefile.in @@ -12,10 +12,18 @@ else libdir = @libdir@ pkglibdir = $(libdir)/@PACKAGE@ -all: +.PHONY: all distdir install-exec install-data install-dvi install-html \ + install-info install-ps install-pdf uninstall check installcheck \ + mostlyclean clean distclean maintainer-clean \ + dvi pdf ps info html + +all: judgk.ko + +judgk.ko: $(MAKE) -C $(linux_source) M=$(judgk_source) EXTRA_CFLAGS=$(judgk_include) modules + distdir: - mkdir -p $(distdir)/judgk + $(MKDIR_P) -p $(distdir)/judgk cp -p \ judgk.h \ judgk_hyperio.c \ |