ok I know you have gotten this like over 100 times but I couldent find it in the serch I ame trying to compile a src file for windows but I get
gcc act_comm.c -D_GNU_SOURCE -g -Wall -O -ggdb -DNOCRYPT -c -o obj/act_comm.o
make: *** [obj/act_comm.o] Error 255
now my make file looks like this
# $Id $
# Makefile for Rom24. Works fine on my Debian system.
# You may need to use 'gmake' on BSD systems.
CC = gcc
RM = rm
EXE = dbarena
PROF = -O -ggdb
# Use these two lines to use crypt(), ie on Linux systems.
#C_FLAGS = $(PROF) -Wall -g -D_GNU_SOURCE
#L_FLAGS = $(PROF) -lcrypt
# Uncomment these two lines to use plaintext passwords.
# This is how you fix the 'crypt' linking errors!
C_FLAGS = -D_GNU_SOURCE -g -Wall $(PROF) -DNOCRYPT
L_FLAGS = $(PROF) -DNOCRYPT
# Source Files
SRC_FILES := $(wildcard *.c)
# Object Files
OBJ_DIR = obj
OBJ_FILES := $(patsubst %.c,$(OBJ_DIR)/%.o,$(SRC_FILES))
rom: $(OBJ_FILES)
$(RM) -f $(EXE)
$(CC) $(L_FLAGS) -o $(EXE) $(OBJ_FILES)
$(OBJ_DIR)/%.o: %.c
$(CC) $< $(C_FLAGS) -c -o $@
nodocs:
@ echo didn\'t read the docs did you!!!???
clean:
$(RM) -f $(OBJ_FILES) $(EXE) *~ *.bak *.orig *.rej
archive:
make clean && cd ../../ && tar -zcf dbz-`date -I`.tar.gz dbz && mv dbz*.tar.gz backup
if my make file is broken pleas tell me oo and if it is for linix that is good to I just need to know because I can then transfer it to my linix one yhanx :)
gcc act_comm.c -D_GNU_SOURCE -g -Wall -O -ggdb -DNOCRYPT -c -o obj/act_comm.o
make: *** [obj/act_comm.o] Error 255
now my make file looks like this
# $Id $
# Makefile for Rom24. Works fine on my Debian system.
# You may need to use 'gmake' on BSD systems.
CC = gcc
RM = rm
EXE = dbarena
PROF = -O -ggdb
# Use these two lines to use crypt(), ie on Linux systems.
#C_FLAGS = $(PROF) -Wall -g -D_GNU_SOURCE
#L_FLAGS = $(PROF) -lcrypt
# Uncomment these two lines to use plaintext passwords.
# This is how you fix the 'crypt' linking errors!
C_FLAGS = -D_GNU_SOURCE -g -Wall $(PROF) -DNOCRYPT
L_FLAGS = $(PROF) -DNOCRYPT
# Source Files
SRC_FILES := $(wildcard *.c)
# Object Files
OBJ_DIR = obj
OBJ_FILES := $(patsubst %.c,$(OBJ_DIR)/%.o,$(SRC_FILES))
rom: $(OBJ_FILES)
$(RM) -f $(EXE)
$(CC) $(L_FLAGS) -o $(EXE) $(OBJ_FILES)
$(OBJ_DIR)/%.o: %.c
$(CC) $< $(C_FLAGS) -c -o $@
nodocs:
@ echo didn\'t read the docs did you!!!???
clean:
$(RM) -f $(OBJ_FILES) $(EXE) *~ *.bak *.orig *.rej
archive:
make clean && cd ../../ && tar -zcf dbz-`date -I`.tar.gz dbz && mv dbz*.tar.gz backup
if my make file is broken pleas tell me oo and if it is for linix that is good to I just need to know because I can then transfer it to my linix one yhanx :)