Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/xcw/demo/Makefile

    rd548fc0 r3875f106  
    3636#
    3737#    cd <helenos-source-dir>
    38 #    mkdir build
    39 #    cd build
    40 #    ../configure.sh
    41 #    ninja
    42 #    ../tools/export.sh export
    43 #    cd ../tools/xcw/demo
    44 #    export PATH=$PATH:<helenos-source-dir>/build/tools/xcw/bin
     38#    make distclean && make -j 4 PROFILE=amd64
     39#    cd <helenos-source-dir>/tools/xcw/demo
     40#    export PATH=$PATH:<helenos-source-dir>/tools/xcw/bin
    4541#    make
    4642#
     
    4844CC = helenos-cc
    4945LD = helenos-ld
    50 INSTALL = install
    51 TEST = helenos-test
    5246CFLAGS = -std=gnu11 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` \
    5347    -D_HELENOS_SOURCE
    5448LIBS = `helenos-pkg-config --libs libgui libdraw libmath`
    55 PREFIX = `helenos-bld-config --install-dir`
    5649output = viewer
    5750objects = viewer.o
     
    6356        rm -f $(output) $(objects)
    6457
    65 install: $(output)
    66         mkdir -p $(PREFIX)/app
    67         $(INSTALL) -T $(output) $(PREFIX)/app/$(output)-xcw
    68 
    69 uninstall:
    70         rm -f $(PREFIX)/app/$(output)-xcw
    71 
    72 test: install
    73         $(TEST)
    74 
    7558$(output): $(objects)
    76         $(CC) -o $@ $^ $(LIBS)
     59        $(LD) -o $@ $^ $(LIBS)
    7760
    7861%.o: %.c
Note: See TracChangeset for help on using the changeset viewer.