Changeset 3875f106 in mainline for tools/xcw/demo/Makefile
- Timestamp:
- 2018-11-09T13:36:27Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a5fe4f
- Parents:
- 9c75a99d
- git-author:
- Jiri Svoboda <jiri@…> (2018-10-09 06:34:48)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-11-09 13:36:27)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/xcw/demo/Makefile
r9c75a99d r3875f106 43 43 44 44 CC = helenos-cc 45 CFLAGS = -std=gnu99 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` 45 LD = helenos-ld 46 CFLAGS = -std=gnu11 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` \ 47 -D_HELENOS_SOURCE 46 48 LIBS = `helenos-pkg-config --libs libgui libdraw libmath` 47 49 output = viewer … … 55 57 56 58 $(output): $(objects) 57 $( CC) -o $@ $^ $(LIBS)59 $(LD) -o $@ $^ $(LIBS) 58 60 59 61 %.o: %.c
Note:
See TracChangeset
for help on using the changeset viewer.