mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
c984ed6b99
- Add LICENSE (GPLv2) - Use new syntax in LIB_DEPENDS - Add support for staging - Add option DOCS - Fix build with any compiler - Fix WWW line and remove Author from pkg-descr
16 lines
432 B
Plaintext
16 lines
432 B
Plaintext
--- ./makefile.unx.orig 2004-06-29 17:16:38.000000000 +0200
|
|
+++ ./makefile.unx 2013-11-10 15:12:37.000000000 +0100
|
|
@@ -5,9 +5,9 @@
|
|
# windows MinGW makefile #
|
|
#--------------------------------------#
|
|
|
|
-CXX = g++
|
|
-CFLAGS = -Wall
|
|
-LDFLAGS = -s -lstdc++ `allegro-config --libs`
|
|
+CXX ?= g++
|
|
+CFLAGS += -Wall `allegro-config --cflags`
|
|
+LDFLAGS += -s -lstdc++ `allegro-config --libs`
|
|
|
|
OBJECTS = main.o gui.o compute.o
|
|
|