Changeset 6a4aa56 in mainline
- Timestamp:
- 2008-02-02T15:46:07Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a671cf0
- Parents:
- f52e6fea
- Location:
- uspace/app/ash/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/ash/tools/Makefile
rf52e6fea r6a4aa56 34 34 35 35 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 36 OUTPUT := $( basename $(SOURCES))36 OUTPUT := $(addprefix ../,$(basename $(SOURCES))) 37 37 38 38 .PHONY: all clean move-output 39 39 40 all: $(OUTPUT) move-output40 all: $(OUTPUT) 41 41 42 #$(OUTPUT): $(OBJECTS) 43 # $(LD) $< $(LFLAGS) -o $@ 44 45 move-output: 46 mv $(OUTPUT) ../ 42 $(OUTPUT): $(OBJECTS) 43 $(CC) $< $(LFLAGS) -o $@ 47 44 48 45 clean: 49 46 -rm -f $(OUTPUT) $(OBJECTS) 50 ( cd ..; rm -f $(OUTPUT); )51 47 52 48 %.o: %.S -
uspace/app/ash/tools/mksyntax.c
rf52e6fea r6a4aa56 57 57 58 58 #include <stdio.h> 59 #include <stdlib.h> 59 60 #include <string.h> 60 61 #include <sys/types.h>
Note:
See TracChangeset
for help on using the changeset viewer.