mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-03 17:54:33 +03:00
Added missing copyright headers
This commit is contained in:
parent
e237ebac8f
commit
ff2f1f1836
@ -2,20 +2,23 @@
|
|||||||
# Atari target setup
|
# Atari target setup
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
ifeq ($(ATARI_ARCH),68020-60)
|
ifeq ($(ATARI_ARCH),68000)
|
||||||
PRGSUFFIX := 000.app
|
PRGSUFFIX := 000.app
|
||||||
|
PKGNAME := ns000.zip
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ATARI_ARCH),68020-60)
|
ifeq ($(ATARI_ARCH),68020-60)
|
||||||
CFLAGS += -m68020-60
|
CFLAGS += -m68020-60
|
||||||
LDFLAGS += -m68020-60
|
LDFLAGS += -m68020-60
|
||||||
PRGSUFFIX := 020.app
|
PRGSUFFIX := 020.app
|
||||||
|
PKGNAME := ns020.zip
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ATARI_ARCH),5475)
|
ifeq ($(ATARI_ARCH),5475)
|
||||||
CFLAGS += -mcpu=5475
|
CFLAGS += -mcpu=5475
|
||||||
LDFLAGS += -mcpu=5475
|
LDFLAGS += -mcpu=5475
|
||||||
PRGSUFFIX := v4e.app
|
PRGSUFFIX := v4e.app
|
||||||
|
PKGNAME := nsv4e.zip
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# non-pkgconfig components
|
# non-pkgconfig components
|
||||||
@ -79,6 +82,14 @@ S_ATARI := $(addprefix atari/,$(S_ATARI))
|
|||||||
SOURCES = $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_ATARI)
|
SOURCES = $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_ATARI)
|
||||||
EXETARGET := ns$(SUBTARGET)$(PRGSUFFIX)
|
EXETARGET := ns$(SUBTARGET)$(PRGSUFFIX)
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Install target
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
ATARI_INSTALL_TARGET_DIR := nsatari.package
|
||||||
|
ATARI_RES_DIR := atari/res
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
# Install target
|
# Install target
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
@ -89,4 +100,21 @@ install-atari:
|
|||||||
# Package target
|
# Package target
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
package-atari:
|
package-atari: $(PKGNAME)
|
||||||
|
$(VQ)echo Creating $(PKGNAME)
|
||||||
|
|
||||||
|
$(PKGNAME): $(EXETARGET)
|
||||||
|
$(Q)rm -rf $(ATARI_INSTALL_TARGET_DIR)
|
||||||
|
$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/
|
||||||
|
$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/netsurf
|
||||||
|
$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/netsurf/doc
|
||||||
|
$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/netsurf/download
|
||||||
|
$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/netsurf/res
|
||||||
|
$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/netsurf/res/fonts
|
||||||
|
#$(Q)mkdir $(ATARI_INSTALL_TARGET_DIR)/netsurf/res/icons
|
||||||
|
$(Q)touch $(ATARI_INSTALL_TARGET_DIR)/netsurf/res/cookies
|
||||||
|
$(Q)cp $(ATARI_RES_DIR)/netsurf.rsc $(ATARI_INSTALL_TARGET_DIR)/netsurf/res/netsurf.rsc
|
||||||
|
$(Q)cp $(ATARI_RES_DIR)/icons/ $(ATARI_INSTALL_TARGET_DIR)/netsurf/res/icons/ -R
|
||||||
|
|
||||||
|
|
||||||
|
$(Q)cp $(EXETARGET) $(ATARI_INSTALL_TARGET_DIR)/netsurf
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CTXMENU_H_INCLUDED
|
#ifndef CTXMENU_H_INCLUDED
|
||||||
#define CTXMENU_H_INCLUDED
|
#define CTXMENU_H_INCLUDED
|
||||||
|
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "atari/encoding.h"
|
#include "atari/encoding.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef NS_ATARI_ENCODING_H
|
#ifndef NS_ATARI_ENCODING_H
|
||||||
#define NS_ATARI_ENCODING_H
|
#define NS_ATARI_ENCODING_H
|
||||||
|
|
||||||
|
18
atari/font.c
18
atari/font.c
@ -18,6 +18,24 @@
|
|||||||
|
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <windom.h>
|
#include <windom.h>
|
||||||
|
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "atari/plot/fontplot.h"
|
#include "atari/plot/fontplot.h"
|
||||||
|
|
||||||
const struct s_font_driver_table_entry font_driver_table[] =
|
const struct s_font_driver_table_entry font_driver_table[] =
|
||||||
|
@ -1,3 +1,22 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef ATARI_REDRAW_SLOTS_H
|
#ifndef ATARI_REDRAW_SLOTS_H
|
||||||
#define ATARI_REDRAW_SLOTS_H
|
#define ATARI_REDRAW_SLOTS_H
|
||||||
|
|
||||||
|
18
atari/save.h
18
atari/save.h
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef NSATARI_SAVE_H
|
#ifndef NSATARI_SAVE_H
|
||||||
#define NSATARI_SAVE_H
|
#define NSATARI_SAVE_H
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2008 Vincent Sanders <vince@simtec.co.uk>
|
* Copyright 2008 Vincent Sanders <vince@simtec.co.uk>
|
||||||
|
* 2012 Ole Loots <ole@monochrom.net>
|
||||||
*
|
*
|
||||||
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
*
|
*
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef NS_ATARI_SEARCH_H
|
#ifndef NS_ATARI_SEARCH_H
|
||||||
#define NS_ATARI_SEARCH_H
|
#define NS_ATARI_SEARCH_H
|
||||||
|
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012 Ole Loots <ole@monochrom.net>
|
||||||
|
*
|
||||||
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
||||||
|
*
|
||||||
|
* NetSurf 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; version 2 of the License.
|
||||||
|
*
|
||||||
|
* NetSurf 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user