summaryrefslogtreecommitdiff
path: root/app-admin/ide-smart/files/ide-smart-1.4-fix-build-system.patch
blob: ad523e36b3f978d25e3eb25862f3f9a454a61e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,10 @@
 
 #CC      = gcc
 PROF    = -g0 -O2
-CFLAGS  = $(PROF) -Wall
-LDFLAGS = $(PROF)
+CFLAGS += -Wall
 TARGET  = ide-smart
 OBJECTS = ide-smart.o
 		
-ide-smart: $(OBJECTS)
-	$(CC) $(LDFLAGS) -o $(TARGET) $(OBJECTS)
 
 all: ide-smart