X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=246655f5ddbf029dc45926d453db86cad3db39d6;hb=fb402760dddcc06205acbcc8123ee99a11536b84;hp=c27d8216f918a569b8587b6efa79d1f344771109;hpb=72bb1f5d2849131d094f38b9a0ce2d17ecacefe1;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index c27d8216..246655f5 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -4,7 +4,7 @@ # (c) 1995-2014 by Artsoft Entertainment # Holger Schemel # info@artsoft.org -# http://www.artsoft.org/ +# https://www.artsoft.org/ # ----------------------------------------------------------------------------- # src/libgame/Makefile # ============================================================================= @@ -19,13 +19,18 @@ SRCS = system.c \ sound.c \ joystick.c \ snapshot.c \ - toons.c \ image.c \ random.c \ hash.c \ + http.c \ + base64.c \ setup.c \ misc.c \ - sdl.c + sdl.c \ + zip/ioapi.c \ + zip/iowin32.c \ + zip/unzip.c \ + zip/miniunz.c OBJS = system.o \ gadgets.o \ @@ -33,13 +38,18 @@ OBJS = system.o \ sound.o \ snapshot.o \ joystick.o \ - toons.o \ image.o \ random.o \ hash.o \ + http.o \ + base64.o \ setup.o \ misc.o \ - sdl.o + sdl.o \ + zip/ioapi.o \ + zip/iowin32.o \ + zip/unzip.o \ + zip/miniunz.o LIBGAME = libgame.a @@ -51,11 +61,11 @@ LIBGAME = libgame.a all: $(LIBGAME) $(LIBGAME): $(OBJS) - $(AR) cru $(LIBGAME) $(OBJS) + $(AR) cr $(LIBGAME) $(OBJS) $(RANLIB) $(LIBGAME) .c.o: - $(CC) $(PROFILING) $(CFLAGS) -c $*.c + $(CC) $(PROFILING) $(CFLAGS) -c $*.c -o $*.o clean: $(RM) $(OBJS)