Admin Panel
#### Start of system configuration section. ####
srcdir = @srcdir@
VPATH = @srcdir@
CC = @CC@
CPP = @CPP@
AS = @AS@
AR = @AR@
RANLIB = @RANLIB@
AWK = @AWK@
#### End system configuration section ####
ifneq ($(TARGET),clean)
include ../../sources/nix/filelist
endif
CURDIR = $(shell pwd)
OPTIONS=-I$(srcdir)/../headers $(CFLAGS)
REDEF=-D_DOSBase=___DOSBase \
-D_UtilityBase=___UtilityBase \
-D_MathIeeeSingBasBase=___MathIeeeSingBasBase \
-D_MathIeeeSingTransBase=___MathIeeeSingTransBase \
-D_MathIeeeDoubBasBase=___MathIeeeDoubBasBase \
-D_MathIeeeDoubTransBase=___MathIeeeDoubTransBase \
-D_LocaleBase=___LocaleBase
SUBDIRSP=$(patsubst %,%/.created,$(SUBDIRS))
%.o: %.c $(SUBDIRSP)
$(CC) $(OPTIONS) -c $(filter-out $(SUBDIRSP), $^) -o $*.o
.PHONY: all clean veryclean
all: libnix.a
clean:
-rm -rf $(SUBDIRS)
veryclean:
-rm -rf *
$(SUBDIRSP):
mkdir -p $(@D)
echo "" >$@
libnix.a: $(OBJECTS) ../../sources/nix/Makefile ../../sources/nix/filelist
-rm -f $@
$(AR) -q $@ $(OBJECTS)
$(RANLIB) $@
# echo "\\$$$(V)" >>$@