Create Makefile for building Feedsnake binary
This commit is contained in:
parent
45646725e0
commit
400664ccb9
|
@ -0,0 +1,9 @@
|
||||||
|
clean:
|
||||||
|
rm combined.scm feedsnake
|
||||||
|
|
||||||
|
client:
|
||||||
|
cat named-format.scm date-strings.scm feedsnake.scm client.scm > combined.scm
|
||||||
|
csc -o feedsnake combined.scm
|
||||||
|
|
||||||
|
all: client
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
(import feedsnake-unix)
|
||||||
|
(main)
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
;;
|
;;
|
||||||
|
|
||||||
(load "date-strings.scm")
|
|
||||||
(load "named-format.scm")
|
|
||||||
|
|
||||||
|
|
||||||
;; Module for misc. helper functions used by both feedsnake & feedsnake-unix
|
;; Module for misc. helper functions used by both feedsnake & feedsnake-unix
|
||||||
(module feedsnake-helpers
|
(module feedsnake-helpers
|
||||||
|
|
Ŝarĝante…
Reference in New Issue