Hi,
I m trying to compile yasss-0.4.7.2, source downloaded from sourceForge
and getting these errors (attached the rar file of source code, just renamed as txt as rar was not supported)
-Wall: command not found
.SUFFIXES:: command not found
.cpp.o:: command not found
bash: ./Makefile: line 11: syntax error near unexpected token `newline'
bash: ./Makefile: line 11: ` $(CC) $(CFLAGS) -c $< '
he
Hello, I am trying to get this going on OpenBSD.
I am trying to build 32-bit linux kernel 2.6.9 on a 64-bit linux host with 2.6.9 (same version). Did some google search and tried the following:
step 1) make ARCH=i386 CFLAGS=-m32 menuconfig
step 2) make ARCH=i386 CFLAGS=-m32
Step 1 was okay. But step 2 got the following errors. What did I do wrong?
Hi
why do I get:
Project/buildFiles/Make$ make New*t
make: Nothing to be done for `New Project'.
with the file below.
Hello,
I have a C++ program that was working on 10.04 version of Ubuntu.
I'm trying to compile my project in Eclipse.
However, it says that the main() is defined more than once.
More dwm hitches.I'm trying to apply the xft patch (downloaded from suckless), and the patch applies fine- but when I go to compile I get this (full output):cortman@gwaihir:~/dwm-6.0$ sudo make clean install
cleaning
rm -f dwm dwm.o dwm-6.0.tar.gz
dwm build options:
CFLAGS = -std=c99 -pedantic -Wall -I.
I am getting undefined reference error while building a simple example with freetype2.
gcc `/usr/bin/freetype-config --cflags` `/usr/bin/freetype-config --libs` a.c
/tmp/ccuSpdkr.o: In function `main':
a.c:(.text+0x10): undefined reference to `FT_Init_FreeType'
collect2: error: ld returned 1 exit status
I am on Ubuntu 12.10 x64.
main.c:
#include <stdio.h>
#include "proto.h"
int main(void)
{
return(0);
} // end main
support.c:
#include "proto.h"
\\ only function defintions
proto.h:
#ifndef proto
#define proto
double PI = 3.14159;
int LOOP_LIMIT = 90;
#endif
makefile:
main: main.o support.o
gcc -lm -o main main.o support.o
main.o: main.c proto.h
gcc -c main.c
support.o: support.c proto.h