mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-31 07:33:01 +00:00 
			
		
		
		
	Update Makefile and build_win for better builds.
Use build/c/janet.c in both to prevent accidental inclusion of build/janet.h (which may be stale) instead of the source headers.
This commit is contained in:
		
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -140,3 +140,6 @@ compile_commands.json | ||||
| CTestTestfile.cmake | ||||
|  | ||||
| # End of https://www.gitignore.io/api/cmake | ||||
|  | ||||
| # Astyle | ||||
| *.orig | ||||
|   | ||||
							
								
								
									
										16
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								Makefile
									
									
									
									
									
								
							| @@ -66,7 +66,7 @@ ifeq ($(UNAME), Haiku) | ||||
| 	LDFLAGS=-Wl,--export-dynamic | ||||
| endif | ||||
|  | ||||
| $(shell mkdir -p build/core build/mainclient build/webclient build/boot) | ||||
| $(shell mkdir -p build/core build/c build/boot) | ||||
| all: $(JANET_TARGET) $(JANET_LIBRARY) $(JANET_STATIC_LIBRARY) build/janet.h | ||||
|  | ||||
| ###################### | ||||
| @@ -149,7 +149,7 @@ build/janet_boot: $(JANET_BOOT_OBJECTS) | ||||
| 	$(CC) $(BOOT_CFLAGS) -o $@ $(JANET_BOOT_OBJECTS) $(CLIBS) | ||||
|  | ||||
| # Now the reason we bootstrap in the first place | ||||
| build/janet.c: build/janet_boot src/boot/boot.janet | ||||
| build/c/janet.c: build/janet_boot src/boot/boot.janet | ||||
| 	build/janet_boot . JANET_PATH '$(JANET_PATH)' > $@ | ||||
| 	cksum $@ | ||||
|  | ||||
| @@ -159,7 +159,7 @@ build/janet.c: build/janet_boot src/boot/boot.janet | ||||
|  | ||||
| SONAME=libjanet.so.1.14 | ||||
|  | ||||
| build/shell.c: src/mainclient/shell.c | ||||
| build/c/shell.c: src/mainclient/shell.c | ||||
| 	cp $< $@ | ||||
|  | ||||
| build/janet.h: $(JANET_TARGET) src/include/janet.h src/conf/janetconf.h | ||||
| @@ -168,11 +168,11 @@ build/janet.h: $(JANET_TARGET) src/include/janet.h src/conf/janetconf.h | ||||
| build/janetconf.h: src/conf/janetconf.h | ||||
| 	cp $< $@ | ||||
|  | ||||
| build/janet.o: build/janet.c src/include/janet.h src/conf/janetconf.h | ||||
| 	$(HOSTCC) $(BUILD_CFLAGS) -c $< -o $@ -I build | ||||
| build/janet.o: build/c/janet.c src/conf/janetconf.h src/include/janet.h | ||||
| 	$(HOSTCC) $(BUILD_CFLAGS) -c $< -o $@ | ||||
|  | ||||
| build/shell.o: build/shell.c src/include/janet.h src/conf/janetconf.h | ||||
| 	$(HOSTCC) $(BUILD_CFLAGS) -c $< -o $@ -I build | ||||
| build/shell.o: build/c/shell.c src/conf/janetconf.h src/include/janet.h | ||||
| 	$(HOSTCC) $(BUILD_CFLAGS) -c $< -o $@ | ||||
|  | ||||
| $(JANET_TARGET): build/janet.o build/shell.o | ||||
| 	$(HOSTCC) $(LDFLAGS) $(BUILD_CFLAGS) -o $@ $^ $(CLIBS) | ||||
| @@ -224,7 +224,7 @@ dist: build/janet-dist.tar.gz | ||||
| build/janet-%.tar.gz: $(JANET_TARGET) \ | ||||
| 	build/janet.h \ | ||||
| 	jpm.1 janet.1 LICENSE CONTRIBUTING.md $(JANET_LIBRARY) $(JANET_STATIC_LIBRARY) \ | ||||
| 	build/doc.html README.md build/janet.c build/shell.c jpm | ||||
| 	build/doc.html README.md build/c/janet.c build/c/shell.c jpm | ||||
| 	$(eval JANET_DIST_DIR = "janet-$(shell basename $*)") | ||||
| 	mkdir -p build/$(JANET_DIST_DIR) | ||||
| 	cp -r $^ build/$(JANET_DIST_DIR)/ | ||||
|   | ||||
| @@ -30,7 +30,7 @@ if not "%JANET_BUILD%" == "" ( | ||||
|  | ||||
| if not exist build mkdir build | ||||
| if not exist build\core mkdir build\core | ||||
| if not exist build\mainclient mkdir build\mainclient | ||||
| if not exist build\c mkdir build\c | ||||
| if not exist build\boot mkdir build\boot | ||||
|  | ||||
| @rem Build the bootstrap interpreter | ||||
| @@ -44,10 +44,10 @@ for %%f in (src\boot\*.c) do ( | ||||
| ) | ||||
| %JANET_LINK% /out:build\janet_boot.exe build\boot\*.obj | ||||
| @if errorlevel 1 goto :BUILDFAIL | ||||
| build\janet_boot . > build\janet.c | ||||
| build\janet_boot . > build\c\janet.c | ||||
|  | ||||
| @rem Build the sources | ||||
| %JANET_COMPILE% /Fobuild\janet.obj build\janet.c | ||||
| %JANET_COMPILE% /Fobuild\janet.obj build\c\janet.c | ||||
| @if errorlevel 1 goto :BUILDFAIL | ||||
| %JANET_COMPILE% /Fobuild\shell.obj src\mainclient\shell.c | ||||
| @if errorlevel 1 goto :BUILDFAIL | ||||
| @@ -102,9 +102,9 @@ exit /b 0 | ||||
| mkdir dist | ||||
| janet.exe tools\gendoc.janet > dist\doc.html | ||||
| janet.exe tools\removecr.janet dist\doc.html | ||||
| janet.exe tools\removecr.janet build\janet.c | ||||
| janet.exe tools\removecr.janet build\c\janet.c | ||||
|  | ||||
| copy build\janet.c dist\janet.c | ||||
| copy build\c\janet.c dist\janet.c | ||||
| copy src\mainclient\shell.c dist\shell.c | ||||
| copy janet.exe dist\janet.exe | ||||
| copy LICENSE dist\LICENSE | ||||
|   | ||||
| @@ -1207,7 +1207,7 @@ JanetTable *janet_core_env(JanetTable *replacements) { | ||||
|  | ||||
|     /* Allow references to the environment */ | ||||
|     janet_def(env, "root-env", janet_wrap_table(env), | ||||
|             JDOC("The root environment used to create environments with (make-env).")); | ||||
|               JDOC("The root environment used to create environments with (make-env).")); | ||||
|  | ||||
|     janet_load_libs(env); | ||||
|     janet_gcroot(janet_wrap_table(env)); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Calvin Rose
					Calvin Rose