Why this Makefile got an error on it ?
This Makefile works on most Unix Systems.
include $(MAKEVAR)
CFILES = \
Addressc.c \
Authorsc.c \
Browserc.c \
Datasetc.c \
Dtabc.c \
Filec.c \
Identityc.c \
Itabc.c \
Mainc.c \
Objectc.c \
Predc.c \
Projectc.c \
Refc.c \
Rtabc.c \
Specc.c \
Stabc.c \
Stringc.c \
Swpc.c \
Testc.c \
Udispc.c \
Varc.c \
test.c
COBJS = $(CFILES:.c=$(EXT).o)
all : $(COBJS)
$(COBJS) : $$(@F:$(EXT).o=.c)
$(CC) $(CFLAGS) -c -o $@ $(@F:$(EXT).o=.c)
- Handle $$@ [Was: Compiliance] Frederic Bonneaudeau 57 18
- Handle $$@ [Was: Compiliance] Edouard G. Parmelan
- Re: Compiliance Paul D. Smith
