Changes in tools/xcw/demo/Makefile [d548fc0:3875f106] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/xcw/demo/Makefile
rd548fc0 r3875f106 36 36 # 37 37 # 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 45 41 # make 46 42 # … … 48 44 CC = helenos-cc 49 45 LD = helenos-ld 50 INSTALL = install51 TEST = helenos-test52 46 CFLAGS = -std=gnu11 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` \ 53 47 -D_HELENOS_SOURCE 54 48 LIBS = `helenos-pkg-config --libs libgui libdraw libmath` 55 PREFIX = `helenos-bld-config --install-dir`56 49 output = viewer 57 50 objects = viewer.o … … 63 56 rm -f $(output) $(objects) 64 57 65 install: $(output)66 mkdir -p $(PREFIX)/app67 $(INSTALL) -T $(output) $(PREFIX)/app/$(output)-xcw68 69 uninstall:70 rm -f $(PREFIX)/app/$(output)-xcw71 72 test: install73 $(TEST)74 75 58 $(output): $(objects) 76 $( CC) -o $@ $^ $(LIBS)59 $(LD) -o $@ $^ $(LIBS) 77 60 78 61 %.o: %.c
Note:
See TracChangeset
for help on using the changeset viewer.