mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
Tiny and easy to use tool to convert ISO images in CSO (compressed ISO) format. Based on CISO, but with bug fixes. WWW: http://github.com/laffer1/ciso-maker PR: 193609 Submitted by: Lucas Holt <luke@foolishgames.com>
17 lines
350 B
Text
17 lines
350 B
Text
--- Makefile.orig 2014-09-13 15:12:12.000000000 +0000
|
|
+++ Makefile 2014-09-13 15:12:41.000000000 +0000
|
|
@@ -1,13 +1,9 @@
|
|
DESTDIR=
|
|
PREFIX= /usr/local/
|
|
-CC= gcc
|
|
+CC?= llvm
|
|
|
|
INSTALL = install
|
|
|
|
-#.if ${CC} == "clang"
|
|
-#CFLAGS+= -Wno-format -Wno-tautological-compare
|
|
-#.endif
|
|
-
|
|
all : ciso-maker
|
|
ciso-maker : ciso.o
|
|
${CC} -o ciso-maker ciso.o -lz
|