summaryrefslogtreecommitdiff
path: root/lang/wxbasic/files/patch-makefile.unx
diff options
context:
space:
mode:
Diffstat (limited to 'lang/wxbasic/files/patch-makefile.unx')
-rw-r--r--lang/wxbasic/files/patch-makefile.unx17
1 files changed, 0 insertions, 17 deletions
diff --git a/lang/wxbasic/files/patch-makefile.unx b/lang/wxbasic/files/patch-makefile.unx
deleted file mode 100644
index 9ea1246f0643..000000000000
--- a/lang/wxbasic/files/patch-makefile.unx
+++ /dev/null
@@ -1,17 +0,0 @@
---- makefile.unx.orig Tue Jun 4 01:50:21 2002
-+++ makefile.unx Tue Jun 4 01:54:42 2002
-@@ -12,12 +12,12 @@
- .SUFFIXES: .o .cpp
-
- .cpp.o :
-- $(CXX) -c `wx-config --cxxflags` -o $@ $<
-+ $(CXX) ${CXXFLAGS} -c `wx-config --cxxflags` -o $@ $<
-
- all: $(PROGRAM)
-
- $(PROGRAM): $(OBJECTS)
-- $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
-+ $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` ${LIBS}
-
- clean:
- rm -f *.o $(PROGRAM)