mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-04 22:30:42 +00:00
6bafc3a9b4
- fix definition of OBJS such that they can be placed in the /obj hierarchy. Also added some more default targets for the same purpose. - added in a rule to append an rVersion resource to the library, unless the NO_REZ macro is set in the makefile
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
#
|
|
# $Id: lib.mk,v 1.4 1998/02/15 19:18:20 gdr-ftp Exp $
|
|
#
|
|
|
|
.INCLUDE: /src/gno/paths.mk
|
|
.INCLUDE: /src/gno/lib/const.mk
|
|
|
|
# Objects are source file names with [.c|.asm] changed to .o, and placed
|
|
# in the /obj hierarchy.
|
|
OBJS *= $(OBJ_DIR){$(SRCS:b)}.o
|
|
|
|
#
|
|
# Check for user-specified compile/load options
|
|
#
|
|
|
|
# Was debugging requested?
|
|
.IF $(DEBUG) != $(NULL)
|
|
CFLAGS+= -G$(DEBUG)
|
|
.END
|
|
|
|
# Was special optimizing requested?
|
|
OPTIMIZE*= 78
|
|
|
|
# Compile and load flags passed to occ
|
|
CFLAGS += -O$(OPTIMIZE)
|
|
|
|
# build is the default target
|
|
build: $(OBJ_DIR) $(LIBTARGET)
|
|
|
|
# create the object directory hierarchy if necessary
|
|
$(OBJ_DIR):
|
|
$(INSTALL) -d $(OBJ_DIR)
|
|
|
|
# Update library with out of date object files
|
|
$(LIBTARGET) .PRECIOUS: $(OBJS)
|
|
$(MAKELIB) $(MAKELIBFLAGS) -l $@ $^
|
|
|
|
# Use "dmake force; dmake build" to update all the object files in a library
|
|
force: $(OBJS)
|
|
touch $<
|
|
|
|
.IF $(NO_REZ) == $(NULL)
|
|
$(LIBTARGET):: $(OBJ_DIR)lib$(LIB).r
|
|
$(CATREZ) -d $@ $(OBJ_DIR)lib$(LIB).r
|
|
.END
|
|
|
|
.INCLUDE: /src/gno/lib/librelease.mk
|
|
|
|
# Default target for object files
|
|
$(OBJ_DIR)%.o: %.c ; $(CC) -o $@ $(CFLAGS) -a0 -c $<
|
|
$(OBJ_DIR)%.o: %.asm ; $(AS) -o $@ $(ASFLAGS) -a0 -c $<
|
|
$(OBJ_DIR)%.r: %.rez ; $(REZ) -o $@ $(REZFLAGS) $<
|