diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-04-20 09:36:55 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-04-20 09:36:55 +0100 |
commit | 1f956fc0c923d5ebf4c8ecc8de0fce3c4ca4698c (patch) | |
tree | 9c4423fd9f8cd5918296127d9a089feec5473e40 /Makefile |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5150fbe --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +# snbrowse - Simple browser for Spectrum Next +# +# Copyright (C) 2024 Ian Cowburn (ianc@noddybox.co.uk) +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ------------------------------------------------------------------------- +# +# Makefile +# +snbrowse: snbrowse.c Makefile + zcc +zxn -o snbrowse snbrowse.c -clib=classic -lndos -create-app -subtype=nex + +clean: + rm -f snbrowse.nex snbrowse |