]> Nishi Git Mirror - dataworks.git/commitdiff
change copyright
authornishi <nishi@d4a5a174-5a4a-5b4b-b672-37683c10d7d5>
Wed, 22 May 2024 00:22:45 +0000 (00:22 +0000)
committernishi <nishi@d4a5a174-5a4a-5b4b-b672-37683c10d7d5>
Wed, 22 May 2024 00:22:45 +0000 (00:22 +0000)
git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@58 d4a5a174-5a4a-5b4b-b672-37683c10d7d5

Client/Makefile
Library/dataworks.c

index 2f4c2ffb353e12c691902c406763c69aad472ad8..f43084b605a000afba75521b9dd00671a60fc1c0 100644 (file)
@@ -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 $@ $<
index e06d03c400b1a0445172e980e9437eb12b3ad961..09debc201432bc4dfa2cabb9ef149b63fb162a04 100644 (file)
@@ -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: <nishi@nishi.boats>";
 
 #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; }