From: nishi Date: Wed, 22 May 2024 00:22:45 +0000 (+0000) Subject: change copyright X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=6c98f6a7f09e8c470b36189ed5a2591c78c8fff0;p=dataworks.git change copyright git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@58 d4a5a174-5a4a-5b4b-b672-37683c10d7d5 --- diff --git a/Client/Makefile b/Client/Makefile index 2f4c2ff..f43084b 100644 --- a/Client/Makefile +++ b/Client/Makefile @@ -7,8 +7,8 @@ OBJS = main.o all: dataworks$(EXEC_SUFFIX) -dataworks$(EXEC_SUFFIX): $(OBJS) ../Library/*.o - $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) ../Library/*.o +dataworks$(EXEC_SUFFIX): $(OBJS) $(LINK_LIB) + $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) $(LINK_LIB) .c.o: $(CC) -I../Library $(CFLAGS) -c -o $@ $< diff --git a/Library/dataworks.c b/Library/dataworks.c index e06d03c..09debc2 100644 --- a/Library/dataworks.c +++ b/Library/dataworks.c @@ -30,7 +30,9 @@ const char* dataworks_version = "0.0.0"; const char* dataworks_compile_date = __DATE__; -const char* dataworks_copyright = "Copyright (c) Crabware 2024"; +const char* dataworks_copyright = "Copyright (c) Crabware 2024\n" + " Crabware is the software-development division of\n" + " Hinode Gakuen PC-Club. Contact: "; #if defined(__MINGW32__) const char* dataworks_platform = "Windows/" @@ -53,6 +55,4 @@ char dataworks_get_endian(void) { return *(char*)&n == 1 ? 'L' : 'B'; } -const char* dataworks_get_copyright(void){ - return dataworks_copyright; -} +const char* dataworks_get_copyright(void) { return dataworks_copyright; }