Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.linux 645B

12345678910111213141516171819202122232425262728
  1. #!/usr/bin/Makefile -f
  2. CC ?= gcc
  3. BUILD_FLAGS = -DSFX -DLINUX -I. -I.. $(CFLAGS) -O2
  4. BUILD_FLAGS += -DLARGE_FILE_SUPPORT -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE
  5. BUILD_FLAGS += -DNO_LCHMOD -DHAVE_DIRENT_H -DHAVE_TERMIOS_H -D_MBCS
  6. LINK_FLAGS = -static $(LDFLAGS)
  7. OBJ = crc32.o crypt.o extract.o fileio.o globals.o inflate.o match.o process.o ttyio.o ubz2err.o unzip.o zipinfo.o
  8. OBJ += unix/unix.o
  9. OBJ += unzipfx/appDetails.o
  10. # -----------------------------
  11. all: unzipfx2cat
  12. unzipfx2cat: $(OBJ)
  13. $(CC) $^ $(LINK_FLAGS) -o $@
  14. clean:
  15. rm -f *~ $(OBJ)
  16. # -----------------------------
  17. .c.o:
  18. $(CC) $< $(BUILD_FLAGS) -c -o $@