Create Makefile for building Feedsnake binary

This commit is contained in:
Jaidyn Ann 2022-12-28 16:18:43 -06:00
parent 45646725e0
commit 400664ccb9
3 changed files with 12 additions and 3 deletions

9
Makefile Normal file
View File

@ -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

3
client.scm Executable file
View File

@ -0,0 +1,3 @@
(import feedsnake-unix)
(main)

View File

@ -15,9 +15,6 @@
;; 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 feedsnake-helpers