base
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user