~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/app/tester/Makefile

  • Committer: Jakub Jermar
  • Date: 2011-06-02 21:26:44 UTC
  • mfrom: (720.2.82 ext2-merge)
  • Revision ID: jakub@jermar.eu-20110602212644-t5p3o4bux1n8ybvd
Merge from http://ho.st.dcs.fmph.uniba.sk/~mato/bzr/helenos-ext2.

Changes made against the ext2 branch parent:
- removed .bzrignore
- removed all traces of pipefs

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#
29
29
 
30
30
USPACE_PREFIX = ../..
 
31
LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBEXT2_PREFIX)/libext2.a
 
32
EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBEXT2_PREFIX)
31
33
BINARY = tester
32
34
 
33
35
SOURCES = \
34
36
        tester.c \
 
37
        util.c \
35
38
        thread/thread1.c \
36
39
        print/print1.c \
37
40
        print/print2.c \
54
57
        devs/devman1.c \
55
58
        devs/devman2.c \
56
59
        hw/misc/virtchar1.c \
57
 
        hw/serial/serial1.c
 
60
        hw/serial/serial1.c \
 
61
        libext2/libext2_1.c
58
62
 
59
63
include $(USPACE_PREFIX)/Makefile.common