This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
CFLAGS=-g -Wall
CC=g++
AR=ar
RANLIB=ranlib
LIBS=-L./ -L/usr/local/lib -lc -lz -lexpat
ALL=shlisting shcopy shmove
all: $(ALL)
shlisting: shlisting.o libshsdk.a
g++ shlisting.o -o shlisting ${LIBS} -lshsdk
shcopy: shcopy.o libshsdk.a
g++ shcopy.o -o shcopy ${LIBS} -lshsdk
shmove: shmove.o libshsdk.a
g++ shmove.o -o shmove ${LIBS} -lshsdk
clean:
rm -f *.o $(ALL)