Changeset 31 for trunk/test/Makefile


Ignore:
Timestamp:
07/16/05 15:05:19 (19 years ago)
Author:
tim
Message:

Added new lightweight stack library

rewrote test program to use this instead of string concatenation/recursion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/Makefile

    r30 r31  
    33################################################################################
    44
     5CC=gcc
     6OPTS=-ggdb -std=gnu89 -pedantic -Wall
     7
    58REGFIO_O=../lib/regfio.o
    69LIB_REGFIO_O=lib-regfio.o
    710LIB_REGFIO=lib-regfio
    8 FILES=$(LIB_REGFIO) $(REGFIO_O)
     11FILES=$(LIB_REGFIO) $(LIB_REGFIO_O)
    912
    1013all: $(FILES)
    11 
    12 $(REGFIO_O): ../lib/regfio.c
    13         $(CC) $(CFLAGS) $(OPTS) -c -o $@ ../lib/regfio.c
    1414
    1515$(LIB_REGFIO_O): lib-regfio.c
    1616        $(CC) $(CFLAGS) $(OPTS) -c -o $@ lib-regfio.c
    1717
    18 $(LIB_REGFIO):  $(LIB_REGFIO_O) $(REGFIO_O)
    19         $(CC) $(CFLAGS) $(OPTS) -o $@ $(LIB_REGFIO_O) $(REGFIO_O) ../lib/smb_deps.c
     18$(LIB_REGFIO):  $(LIB_REGFIO_O) $(REGFIO_O) ../lib/smb_deps.o ../lib/void_stack.o
     19        $(CC) $(CFLAGS) $(OPTS) -o $@ $(LIB_REGFIO_O) $(REGFIO_O) ../lib/smb_deps.o ../lib/void_stack.o
     20
     21
     22clean:
     23        rm -f $(FILES)
Note: See TracChangeset for help on using the changeset viewer.