mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
22fa70695a
- changed definition of OBJS to remove the full pathnames and to add to previous values of OBJS rather than to act as a default value binrules.mk: - backed out all v1.5 changes except for using $(MAINSRC) vice $(MAIN).c - added a recipe for building ProDOS-renamed object files paths.mk: - backed out v1.6 changes - added a macro, PRODOS_OBJS. If this is set to "true", then ProDOS-compliant file names will be used for object files.
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
#
|
|
# Standard compilation rules for utilities (directories ./bin, ./sbin,
|
|
# ./usr.bin, ./usr.sbin). These are not used when building the libraries.
|
|
#
|
|
# $Id: binrules.mk,v 1.6 1998/02/17 00:26:25 gdr-ftp Exp $
|
|
#
|
|
# Devin Reade, Dave Tribby, 1997.
|
|
#
|
|
|
|
# Default target, "build," generates the program file
|
|
build: $(OBJ_DIR) $(OBJ_DIR)$(PROG)
|
|
|
|
# create the object directory hierarchy if necessary
|
|
$(OBJ_DIR):
|
|
$(INSTALL) -d $(OBJ_DIR)
|
|
|
|
# Create the main program file with a ".root" and set the stack size.
|
|
# Include standard occ options
|
|
# -a0: use .o suffix for object file
|
|
# -c: don't link after compiling
|
|
$(MAIN).o: $(MAINSRC)
|
|
$(CC) -o $@ $(CFLAGS:s/ -r / /) -a0 -c $(MAINSRC)
|
|
|
|
# Program depends upon all the objects. Add the version resource.
|
|
$(OBJ_DIR)$(PROG): $(OBJS)
|
|
$(CC) -o $@ $(LDFLAGS) $< $(LDLIBS)
|
|
$(CATREZ) -d $@ $(OBJ_DIR)$(PROG).r
|
|
$(OBJ_DIR)$(PROG): $(PROG).r
|
|
|
|
# Remove intermediate files. If we don't put shell meta characters in
|
|
# here, then dmake doesn't have to start up a subshell and can instead
|
|
# exec the line directly
|
|
clean:
|
|
-$(RM) -f $(OBJ_DIR){$(OBJS)}
|
|
-$(RM) -f $(OBJ_DIR)$(MAIN).root
|
|
-$(RM) -f $(OBJ_DIR)$(PROG).r
|
|
-$(RM) -f $(PROG).rej
|
|
|
|
# Remove intermediate files and program file
|
|
clobber: clean
|
|
-$(RM) $(OBJ_DIR)$(PROG)
|
|
|
|
# Implicit rule to handle ProDOS-renamed object files
|
|
%.o: %.O;
|
|
%.O .PRECIOUS : $$(@:b:s/./_/g).c
|
|
$(CC) -o $(OBJ_DIR)$*.o $(CFLAGS) -c $<
|